Code Duplication    Length = 6-6 lines in 2 locations

Sniff.php 2 locations

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