Files
varlog/.php-cs-fixer.dist.php
T
Cedric Abonnel 700329f156 Initial commit
2026-05-08 12:55:46 +02:00

13 lines
308 B
PHP

<?php
$finder = PhpCsFixer\Finder::create()->in(__DIR__);
return (new PhpCsFixer\Config())
->setRiskyAllowed(true)
->setRules([
'@PSR12' => true,
'strict_param' => true,
'declare_strict_types' => true,
'no_unused_imports' => true,
'single_quote' => true,
])
->setFinder($finder);