We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 55d563e + 553ed88 commit 69bf856Copy full SHA for 69bf856
src/Standards/Generic/Sniffs/WhiteSpace/ArbitraryParenthesesSpacingSniff.php
@@ -59,7 +59,6 @@ public function register()
59
60
$this->ignoreTokens[T_ANON_CLASS] = T_ANON_CLASS;
61
$this->ignoreTokens[T_USE] = T_USE;
62
- $this->ignoreTokens[T_LIST] = T_LIST;
63
$this->ignoreTokens[T_DECLARE] = T_DECLARE;
64
$this->ignoreTokens[T_THROW] = T_THROW;
65
$this->ignoreTokens[T_YIELD] = T_YIELD;
src/Util/Tokens.php
@@ -340,6 +340,7 @@ final class Tokens
340
*/
341
public static $parenthesisOpeners = [
342
T_ARRAY => T_ARRAY,
343
+ T_LIST => T_LIST,
344
T_FUNCTION => T_FUNCTION,
345
T_CLOSURE => T_CLOSURE,
346
T_WHILE => T_WHILE,
0 commit comments