Files
bendtstudio0-static/pancake/system/vendor/php-http/httplug/.php-cs-fixer.dist.php
2025-11-26 13:22:58 -05: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;