Code Duplication    Length = 6-6 lines in 2 locations

Sniff.php 2 locations

@@ 1079-1084 (lines=6) @@
1076
            // it's likely to be an array which might have arguments in it. This
1077
            // could cause problems in our parsing below, so lets just skip to the
1078
            // end of it.
1079
            if (isset($tokens[$i]['parenthesis_opener']) === true) {
1080
                // Don't do this if it's the close parenthesis for the method.
1081
                if ($i !== $tokens[$i]['parenthesis_closer']) {
1082
                    $i = ($tokens[$i]['parenthesis_closer'] + 1);
1083
                }
1084
            }
1085
1086
            if (isset($tokens[$i]['bracket_opener']) === true) {
1087
                // Don't do this if it's the close parenthesis for the method.
@@ 1086-1091 (lines=6) @@
1083
                }
1084
            }
1085
1086
            if (isset($tokens[$i]['bracket_opener']) === true) {
1087
                // Don't do this if it's the close parenthesis for the method.
1088
                if ($i !== $tokens[$i]['bracket_closer']) {
1089
                    $i = ($tokens[$i]['bracket_closer'] + 1);
1090
                }
1091
            }
1092
1093
            switch ($tokens[$i]['code']) {
1094
            case T_BITWISE_AND: