Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
data
/
web
/
vhosts
/
www.humitest.fr
/
htdocs
/
vendor
/
symfony
/
maker-bundle
/
/srv/data/web/vhosts/www.humitest.fr/htdocs/vendor/symfony/maker-bundle/.php_cs.dist
<?php if (!file_exists(__DIR__.'/src')) { exit(0); } $finder = PhpCsFixer\Finder::create() ->in(__DIR__.'/src') // the PHP template files are a bit special ->notName('*.tpl.php') ; if (\PHP_VERSION_ID < 70100) { // EntityRegenerator works only with PHP 7.1+ $finder->notName('EntityRegenerator.php'); } return PhpCsFixer\Config::create() ->setRules(array( '@Symfony' => true, '@Symfony:risky' => true, 'array_syntax' => ['syntax' => 'short'], 'protected_to_private' => false, 'semicolon_after_instruction' => false, 'header_comment' => [ 'header' => <<<EOF This file is part of the Symfony MakerBundle package. (c) Fabien Potencier <fabien@symfony.com> For the full copyright and license information, please view the LICENSE file that was distributed with this source code. EOF ] )) ->setRiskyAllowed(true) ->setFinder($finder) ;