3 use Symfony\CS\Config\Config;
4 use Symfony\CS\Finder\DefaultFinder;
5 use Symfony\CS\FixerInterface;
7 // Files and directories that will be scanned
8 $finder = DefaultFinder::create()
9 ->exclude(['vendor','Documentation','phpmyadmin','gacl','images','tests'])
13 $config = Config::create()
14 ->level(FixerInterface::NONE_LEVEL)
27 // '-function_call_space',
28 // '-function_declaration',
30 // '-line_after_namespace',
32 'lowercase_constants',
34 // '-method_argument_space',
36 'no_trailing_whitespace_in_comment',
38 // '-php_closing_tag',
39 'single_line_after_imports',
40 // '-switch_case_semicolon_to_colon',
41 // '-switch_case_space',
45 // 'array_element_no_space_before_comma',
46 // 'array_element_white_space_after_comma',
47 // 'blankline_after_open_tag',
48 // 'concat_without_spaces',
49 // 'double_arrow_multiline_whitespaces',
50 // 'duplicate_semicolon',
52 // 'extra_empty_lines',
53 // 'function_typehint_space',
57 // 'multiline_array_trailing_comma',
58 // 'namespace_no_leading_whitespace',
60 // 'no_blank_lines_after_class_opening',
61 // 'no_empty_lines_after_phpdocs',
63 // 'operators_spaces',
65 // 'phpdoc_inline_tag',
66 // 'phpdoc_no_access',
67 // 'phpdoc_no_empty_return',
68 // 'phpdoc_no_package',
71 // 'phpdoc_separation',
72 // 'phpdoc_short_description',
73 // 'phpdoc_to_comment',
75 // 'phpdoc_type_to_var',
77 // 'phpdoc_var_without_name',
80 // 'remove_leading_slash_use',
81 // 'remove_lines_between_uses',
85 // 'single_array_no_trailing_comma',
86 // 'single_blank_line_before_namespace',
88 // 'spaces_before_semicolon',
90 // 'standardize_not_equal',
92 // 'trim_array_spaces',
93 // 'unalign_double_arrow',
95 // 'unary_operators_spaces',
96 // 'unneeded_control_parentheses',
100 // 'align_double_arrow',
102 // 'concat_with_spaces',
106 // 'logical_not_operators_with_spaces',
107 // 'logical_not_operators_with_successor_space',
108 // 'long_array_syntax',
109 // 'multiline_spaces_before_semicolon',
110 // 'newline_after_open_tag',
111 // 'no_blank_lines_before_namespace',
113 // 'php4_constructor',
114 // 'php_unit_construct',
115 // 'php_unit_strict',
117 // 'phpdoc_var_to_type',
118 // 'short_array_syntax',
124 ->setUsingLinter(true)
125 ->setUsingCache(true)