Skip to content

Commit 26acf2f

Browse files
committed
Set spaces_inside_parentheses to none
1 parent 64d7039 commit 26acf2f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/Config.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,6 @@ protected function prepareRules() : void
183183
'no_space_around_double_colon' => true,
184184
'no_spaces_after_function_name' => true,
185185
'no_spaces_around_offset' => true,
186-
'no_spaces_inside_parenthesis' => true,
187186
'no_superfluous_elseif' => true,
188187
'no_superfluous_phpdoc_tags' => false,
189188
'no_trailing_comma_in_singleline' => true,
@@ -268,6 +267,9 @@ protected function prepareRules() : void
268267
'single_quote' => true,
269268
'single_space_around_construct' => true,
270269
'space_after_semicolon' => true,
270+
'spaces_inside_parentheses' => [
271+
'space' => 'none',
272+
],
271273
'standardize_increment' => true,
272274
'standardize_not_equals' => true,
273275
'static_lambda' => true,

0 commit comments

Comments
 (0)