Code Duplication    Length = 6-6 lines in 2 locations

Sniff.php 2 locations

@@ 709-714 (lines=6) @@
706
            // it's likely to be an array which might have arguments in it. This
707
            // could cause problems in our parsing below, so lets just skip to the
708
            // end of it.
709
            if (isset($tokens[$i]['parenthesis_opener']) === true) {
710
                // Don't do this if it's the close parenthesis for the method.
711
                if ($i !== $tokens[$i]['parenthesis_closer']) {
712
                    $i = ($tokens[$i]['parenthesis_closer'] + 1);
713
                }
714
            }
715
716
            if (isset($tokens[$i]['bracket_opener']) === true) {
717
                // Don't do this if it's the close parenthesis for the method.
@@ 716-721 (lines=6) @@
713
                }
714
            }
715
716
            if (isset($tokens[$i]['bracket_opener']) === true) {
717
                // Don't do this if it's the close parenthesis for the method.
718
                if ($i !== $tokens[$i]['bracket_closer']) {
719
                    $i = ($tokens[$i]['bracket_closer'] + 1);
720
                }
721
            }
722
723
            switch ($tokens[$i]['code']) {
724
            case T_BITWISE_AND: