17 lines
405 B
PHP
17 lines
405 B
PHP
<?php
|
|
|
|
$finder = PhpCsFixer\Finder::create()
|
|
->in(__DIR__. "/src")
|
|
;
|
|
|
|
$config = new PhpCsFixer\Config();
|
|
return $config->setRules([
|
|
'@PSR12' => true,
|
|
'multiline_comment_opening_closing' => true,
|
|
'align_multiline_comment' => ['comment_type' => 'phpdocs_like'],
|
|
//'strict_param' => true,
|
|
'array_syntax' => ['syntax' => 'short'],
|
|
])
|
|
->setFinder($finder)
|
|
;
|