diff --git a/CodeSniffer/Standards/Squiz/Sniffs/Arrays/ArrayDeclarationSniff.php b/CodeSniffer/Standards/Squiz/Sniffs/Arrays/ArrayDeclarationSniff.php index 129841fd5b..d759c413cc 100644 --- a/CodeSniffer/Standards/Squiz/Sniffs/Arrays/ArrayDeclarationSniff.php +++ b/CodeSniffer/Standards/Squiz/Sniffs/Arrays/ArrayDeclarationSniff.php @@ -120,11 +120,11 @@ public function process(PHP_CodeSniffer_File $phpcsFile, $stackPtr) $phpcsFile->fixer->endChangeset(); } - - // We can return here because there is nothing else to check. All code - // below can assume that the array is not empty. - return; } + + // We can return here because there is nothing else to check. All code + // below can assume that the array is not empty. + return; } if ($tokens[$arrayStart]['line'] === $tokens[$arrayEnd]['line']) {