File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 149
149
'no_short_bool_cast ' => true ,
150
150
// When making a method or function call, there MUST NOT be a space between the method or function name and the opening parenthesis.
151
151
'no_spaces_after_function_name ' => true ,
152
- // There MUST NOT be a space after the opening parenthesis. There MUST NOT be a space before the closing parenthesis.
153
- 'no_spaces_inside_parenthesis ' => true ,
154
152
// Removes `@param`, `@return` and `@var` tags that don't provide any useful information.
155
153
'no_superfluous_phpdoc_tags ' => true ,
156
154
// Remove trailing whitespace at the end of non-blank lines.
243
241
'single_quote ' => true ,
244
242
// Each trait `use` must be done as single statement.
245
243
'single_trait_insert_per_statement ' => true ,
244
+ // There MUST NOT be a space after the opening parenthesis. There MUST NOT be a space before the closing parenthesis.
245
+ 'spaces_inside_parentheses ' => false ,
246
246
// Replace all `<>` with `!=`.
247
247
'standardize_not_equals ' => true ,
248
248
// Lambdas not (indirect) referencing `$this` must be declared `static`.
You can’t perform that action at this time.
0 commit comments