Code Duplication    Length = 6-6 lines in 2 locations

Sniff.php 2 locations

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