fuc/vendor/php-http/httplug/.php-cs-fixer.dist.php
2025-02-23 13:30:57 +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;