Skip to content

Commit 8955ef4

Browse files
committed
PHPCSFixer: no_spaces_inside_parenthesis to spaces_inside_parentheses
1 parent 7cdb655 commit 8955ef4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PhpCsFixer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,6 @@
149149
'no_short_bool_cast' => true,
150150
// When making a method or function call, there MUST NOT be a space between the method or function name and the opening parenthesis.
151151
'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,
154152
// Removes `@param`, `@return` and `@var` tags that don't provide any useful information.
155153
'no_superfluous_phpdoc_tags' => true,
156154
// Remove trailing whitespace at the end of non-blank lines.
@@ -243,6 +241,8 @@
243241
'single_quote' => true,
244242
// Each trait `use` must be done as single statement.
245243
'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,
246246
// Replace all `<>` with `!=`.
247247
'standardize_not_equals' => true,
248248
// Lambdas not (indirect) referencing `$this` must be declared `static`.

0 commit comments

Comments
 (0)