Code Duplication    Length = 6-6 lines in 2 locations

Sniff.php 2 locations

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