/
home
/
obinna
/
html
/
boazapp
/
vendor
/
php-http
/
discovery
/
Upload File
HOME
<?php $finder = PhpCsFixer\Finder::create() ->in(__DIR__.'/src') ->name('*.php') ; $config = (new PhpCsFixer\Config()) ->setRiskyAllowed(true) ->setRules([ '@Symfony' => true, 'trailing_comma_in_multiline' => false, // for methods this is incompatible with PHP 7 ]) ->setFinder($finder) ; return $config;