Skip to content

Commit

Permalink
PHPCSFixer: no_spaces_inside_parenthesis to spaces_inside_parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
phpfui committed Aug 17, 2023
1 parent 7cdb655 commit 8955ef4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PhpCsFixer.php
Expand Up @@ -149,8 +149,6 @@
'no_short_bool_cast' => true,
// When making a method or function call, there MUST NOT be a space between the method or function name and the opening parenthesis.
'no_spaces_after_function_name' => true,
// There MUST NOT be a space after the opening parenthesis. There MUST NOT be a space before the closing parenthesis.
'no_spaces_inside_parenthesis' => true,
// Removes `@param`, `@return` and `@var` tags that don't provide any useful information.
'no_superfluous_phpdoc_tags' => true,
// Remove trailing whitespace at the end of non-blank lines.
Expand Down Expand Up @@ -243,6 +241,8 @@
'single_quote' => true,
// Each trait `use` must be done as single statement.
'single_trait_insert_per_statement' => true,
// There MUST NOT be a space after the opening parenthesis. There MUST NOT be a space before the closing parenthesis.
'spaces_inside_parentheses' => false,
// Replace all `<>` with `!=`.
'standardize_not_equals' => true,
// Lambdas not (indirect) referencing `$this` must be declared `static`.
Expand Down

0 comments on commit 8955ef4

Please sign in to comment.