mirror of
http://124.126.16.154:8888/singularity/hyperf-saml.git
synced 2026-01-15 05:15:07 +08:00
17 lines
341 B
PHP
17 lines
341 B
PHP
<?php
|
|
|
|
$finder = PhpCsFixer\Finder::create()->in([
|
|
__DIR__ . '/publish',
|
|
__DIR__ . '/src',
|
|
__DIR__ . '/tests',
|
|
]);
|
|
|
|
$config = new PhpCsFixer\Config();
|
|
return $config->setRules([
|
|
'@PSR12' => true,
|
|
'strict_param' => true,
|
|
'array_syntax' => ['syntax' => 'short'],
|
|
])
|
|
->setUsingCache(false)
|
|
->setFinder($finder);
|