34 lines
970 B
PHP
34 lines
970 B
PHP
<?php
|
|
$finder = PhpCsFixer\Finder::create()
|
|
->in(__DIR__)
|
|
;
|
|
|
|
return PhpCsFixer\Config::create()
|
|
->setRiskyAllowed(true)
|
|
->setRules(array(
|
|
'@PSR2' => true,
|
|
'array_syntax' => array('syntax' => 'short'),
|
|
'combine_consecutive_unsets' => true,
|
|
// 'header_comment' => array('header' => $header),
|
|
'no_extra_consecutive_blank_lines' => array(
|
|
'break',
|
|
'continue',
|
|
'extra',
|
|
'return',
|
|
'throw',
|
|
'use',
|
|
'parenthesis_brace_block',
|
|
'square_brace_block',
|
|
'curly_brace_block'
|
|
),
|
|
'no_useless_else' => true,
|
|
'no_useless_return' => true,
|
|
'ordered_class_elements' => true,
|
|
'ordered_imports' => true,
|
|
'phpdoc_add_missing_param_annotation' => true,
|
|
'psr4' => true,
|
|
'strict_comparison' => true,
|
|
))
|
|
->setFinder($finder)
|
|
;
|