Code Duplication    Length = 6-6 lines in 2 locations

Sniff.php 2 locations

@@ 1027-1032 (lines=6) @@
1024
            // it's likely to be an array which might have arguments in it. This
1025
            // could cause problems in our parsing below, so lets just skip to the
1026
            // end of it.
1027
            if (isset($tokens[$i]['parenthesis_opener']) === true) {
1028
                // Don't do this if it's the close parenthesis for the method.
1029
                if ($i !== $tokens[$i]['parenthesis_closer']) {
1030
                    $i = ($tokens[$i]['parenthesis_closer'] + 1);
1031
                }
1032
            }
1033
1034
            if (isset($tokens[$i]['bracket_opener']) === true) {
1035
                // Don't do this if it's the close parenthesis for the method.
@@ 1034-1039 (lines=6) @@
1031
                }
1032
            }
1033
1034
            if (isset($tokens[$i]['bracket_opener']) === true) {
1035
                // Don't do this if it's the close parenthesis for the method.
1036
                if ($i !== $tokens[$i]['bracket_closer']) {
1037
                    $i = ($tokens[$i]['bracket_closer'] + 1);
1038
                }
1039
            }
1040
1041
            switch ($tokens[$i]['code']) {
1042
            case T_BITWISE_AND: