Code Duplication    Length = 6-6 lines in 2 locations

Sniff.php 2 locations

@@ 1212-1217 (lines=6) @@
1209
            // it's likely to be an array which might have arguments in it. This
1210
            // could cause problems in our parsing below, so lets just skip to the
1211
            // end of it.
1212
            if (isset($tokens[$i]['parenthesis_opener']) === true) {
1213
                // Don't do this if it's the close parenthesis for the method.
1214
                if ($i !== $tokens[$i]['parenthesis_closer']) {
1215
                    $i = ($tokens[$i]['parenthesis_closer'] + 1);
1216
                }
1217
            }
1218
1219
            if (isset($tokens[$i]['bracket_opener']) === true) {
1220
                // Don't do this if it's the close parenthesis for the method.
@@ 1219-1224 (lines=6) @@
1216
                }
1217
            }
1218
1219
            if (isset($tokens[$i]['bracket_opener']) === true) {
1220
                // Don't do this if it's the close parenthesis for the method.
1221
                if ($i !== $tokens[$i]['bracket_closer']) {
1222
                    $i = ($tokens[$i]['bracket_closer'] + 1);
1223
                }
1224
            }
1225
1226
            switch ($tokens[$i]['code']) {
1227
            case T_BITWISE_AND: