Code Duplication    Length = 6-6 lines in 2 locations

PHPCompatibility/Sniff.php 2 locations

@@ 1324-1329 (lines=6) @@
1321
            // it's likely to be an array which might have arguments in it. This
1322
            // could cause problems in our parsing below, so lets just skip to the
1323
            // end of it.
1324
            if (isset($tokens[$i]['parenthesis_opener']) === true) {
1325
                // Don't do this if it's the close parenthesis for the method.
1326
                if ($i !== $tokens[$i]['parenthesis_closer']) {
1327
                    $i = ($tokens[$i]['parenthesis_closer'] + 1);
1328
                }
1329
            }
1330
1331
            if (isset($tokens[$i]['bracket_opener']) === true) {
1332
                // Don't do this if it's the close parenthesis for the method.
@@ 1331-1336 (lines=6) @@
1328
                }
1329
            }
1330
1331
            if (isset($tokens[$i]['bracket_opener']) === true) {
1332
                // Don't do this if it's the close parenthesis for the method.
1333
                if ($i !== $tokens[$i]['bracket_closer']) {
1334
                    $i = ($tokens[$i]['bracket_closer'] + 1);
1335
                }
1336
            }
1337
1338
            switch ($tokens[$i]['type']) {
1339
                case 'T_BITWISE_AND':