ruạṛ
<?php $finder = Symfony\Component\Finder\Finder::create() ->notPath('vendor') ->in(__DIR__) ->name('*.php'); return (new PhpCsFixer\Config()) ->setRules([ '@PSR2' => true, 'array_syntax' => ['syntax' => 'short'], 'ordered_imports' => ['sort_algorithm' => 'alpha'], 'no_unused_imports' => true, ]) ->setFinder($finder);
cải xoăn