@@ -30,7 +30,6 @@ class Rules {
30
30
'declare_equal_normalize ' => true ,
31
31
'dir_constant ' => true ,
32
32
'ereg_to_preg ' => true ,
33
- 'explicit_indirect_variable ' => true ,
34
33
'explicit_string_variable ' => true , // Should be configurable to choose between ${var} and {$var}
35
34
'function_declaration ' => [
36
35
'closure_function_spacing ' => 'none ' ,
@@ -78,7 +77,9 @@ class Rules {
78
77
'normalize_index_brace ' => true ,
79
78
'object_operator_without_whitespace ' => true ,
80
79
'ordered_class_elements ' => true ,
81
- 'ordered_imports ' => true ,
80
+ 'ordered_imports ' => [
81
+ 'imports_order ' => ['class ' , 'function ' , 'const ' ],
82
+ ],
82
83
'php_unit_construct ' => true ,
83
84
'php_unit_expectation ' => true ,
84
85
'php_unit_method_casing ' => true ,
@@ -100,7 +101,6 @@ class Rules {
100
101
'space_before ' => 'none ' ,
101
102
],
102
103
'self_accessor ' => true ,
103
- 'semicolon_after_instruction ' => true ,
104
104
'set_type_to_cast ' => true ,
105
105
'short_scalar_cast ' => true ,
106
106
'single_quote ' => true ,
0 commit comments