goldrat/vendor/catfan/medoo/.php-cs-fixer.dist.php
2025-10-13 09:04:00 +00:00

19 lines
391 B
PHP

<?php
$config = new PhpCsFixer\Config();
$config
->setRules([
'@PSR2' => true,
'@PSR12' => true,
'array_syntax' => ['syntax' => 'short'],
'nullable_type_declaration_for_default_null_value' => true
])
->setFinder(
PhpCsFixer\Finder::create()
->in(__DIR__ . '/src')
->in(__DIR__ . '/tests')
)
;
return $config;