Code Duplication    Length = 6-6 lines in 2 locations

PHPCompatibility/Sniff.php 2 locations

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