![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/vendor/knplabs/gaufrette/ |
<?php return PhpCsFixer\Config::create() ->setFinder(PhpCsFixer\Finder::create() ->exclude('vendor') ->in(__DIR__) ) ->setRules([ '@PSR1' => true, '@PSR2' => true, 'array_syntax' => [ 'syntax' => 'short' ], 'binary_operator_spaces' => [ 'align_equals' => false, 'align_double_arrow' => false ], 'blank_line_before_statement' => true, 'cast_spaces' => true, 'combine_consecutive_unsets' => true, 'concat_space' => [ 'spacing' => 'one' ], 'linebreak_after_opening_tag' => true, 'method_argument_space' => ['ensure_fully_multiline' => false], 'no_blank_lines_after_class_opening' => true, 'no_blank_lines_after_phpdoc' => true, 'no_break_comment' => false, 'no_extra_consecutive_blank_lines' => true, 'no_spaces_around_offset' => true, 'no_trailing_comma_in_singleline_array' => true, 'no_unused_imports' => true, 'no_useless_else' => true, 'no_useless_return' => true, 'no_whitespace_before_comma_in_array' => true, 'no_whitespace_in_blank_line' => true, 'normalize_index_brace' => true, 'PedroTroller/phpspec' => true, 'phpdoc_indent' => true, 'phpdoc_to_comment' => true, 'phpdoc_trim' => true, 'single_quote' => true, 'ternary_to_null_coalescing' => true, 'trailing_comma_in_multiline_array' => true, 'trim_array_spaces' => true, ]) ->registerCustomFixers(new PedroTroller\CS\Fixer\Fixers()) ;