Skip to content

Commit 3caeec9

Browse files
committed
Removed for consistency
1 parent bb293b1 commit 3caeec9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Standards/Squiz/Sniffs/PHP/DisallowComparisonAssignmentSniff.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ public function process(File $phpcsFile, $stackPtr)
6161
);
6262

6363
if ($nextNonEmpty !== false
64-
&& ($tokens[$nextNonEmpty]['code'] === \T_ARRAY
65-
|| $tokens[$nextNonEmpty]['code'] === \T_MATCH)
64+
&& ($tokens[$nextNonEmpty]['code'] === T_ARRAY
65+
|| $tokens[$nextNonEmpty]['code'] === T_MATCH)
6666
) {
6767
return;
6868
}

0 commit comments

Comments
 (0)