fuc-new/vendor/php-http/httplug/.php-cs-fixer.dist.php
hellcat 1fe8673f62 1
2025-10-01 13:34:29 +08:00

17 lines
253 B
PHP
Executable File

<?php
$finder = PhpCsFixer\Finder::create()
->in(__DIR__.'/src')
->name('*.php')
;
$config = (new PhpCsFixer\Config())
->setRiskyAllowed(true)
->setRules([
'@Symfony' => true,
])
->setFinder($finder)
;
return $config;