Code Duplication    Length = 6-6 lines in 2 locations

Sniff.php 2 locations

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