Code Duplication    Length = 6-6 lines in 2 locations

Sniff.php 2 locations

@@ 956-961 (lines=6) @@
953
            // it's likely to be an array which might have arguments in it. This
954
            // could cause problems in our parsing below, so lets just skip to the
955
            // end of it.
956
            if (isset($tokens[$i]['parenthesis_opener']) === true) {
957
                // Don't do this if it's the close parenthesis for the method.
958
                if ($i !== $tokens[$i]['parenthesis_closer']) {
959
                    $i = ($tokens[$i]['parenthesis_closer'] + 1);
960
                }
961
            }
962
963
            if (isset($tokens[$i]['bracket_opener']) === true) {
964
                // Don't do this if it's the close parenthesis for the method.
@@ 963-968 (lines=6) @@
960
                }
961
            }
962
963
            if (isset($tokens[$i]['bracket_opener']) === true) {
964
                // Don't do this if it's the close parenthesis for the method.
965
                if ($i !== $tokens[$i]['bracket_closer']) {
966
                    $i = ($tokens[$i]['bracket_closer'] + 1);
967
                }
968
            }
969
970
            switch ($tokens[$i]['code']) {
971
            case T_BITWISE_AND: