| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 | <?php$finder = PhpCsFixer\Finder::create()    ->ignoreDotFiles(false)    ->ignoreVCSIgnored(true)    ->in(__DIR__);return (new PhpCsFixer\Config())    ->setRules([        '@PSR2' => true,        'array_syntax' => ['syntax' => 'short'],        'not_operator_with_successor_space' => true,        'no_extra_blank_lines' => [            'tokens' => [                'curly_brace_block',                'extra',                'parenthesis_brace_block',                'throw',                'use',            ],        ],        'no_unused_imports' => true,        'ordered_imports' => ['sort_algorithm' => 'alpha'],        'ternary_operator_spaces' => true,        'single_blank_line_before_namespace' => true,        // PSR-12        'blank_line_after_opening_tag' => true,        'braces' => ['allow_single_line_closure' => true],        'compact_nullable_typehint' => true,        'concat_space' => ['spacing' => 'one'],        'declare_equal_normalize' => ['space' => 'none'],        'function_typehint_space' => true,        'new_with_braces' => true,        'method_argument_space' => ['on_multiline' => 'ensure_fully_multiline'],        'no_empty_statement' => true,        'no_leading_import_slash' => true,        'no_leading_namespace_whitespace' => true,        'no_whitespace_in_blank_line' => true,        'return_type_declaration' => ['space_before' => 'none'],        'single_trait_insert_per_statement' => true,    ])    ->setFinder($finder);
 |