Files

12 lines
194 B
PHP
Raw Permalink Normal View History

2026-05-28 09:34:28 +02:00
<?php
$config = PhpCsFixer\Config::create();
$config->getFinder()
->exclude('vendor')
->in(__DIR__);
$config->setRules([
'@PSR1' => true,
'@Symfony' => true
]);
return $config;