@@ 803-808 (lines=6) @@ | ||
800 | // it's likely to be an array which might have arguments in it. This |
|
801 | // could cause problems in our parsing below, so lets just skip to the |
|
802 | // end of it. |
|
803 | if (isset($tokens[$i]['parenthesis_opener']) === true) { |
|
804 | // Don't do this if it's the close parenthesis for the method. |
|
805 | if ($i !== $tokens[$i]['parenthesis_closer']) { |
|
806 | $i = ($tokens[$i]['parenthesis_closer'] + 1); |
|
807 | } |
|
808 | } |
|
809 | ||
810 | if (isset($tokens[$i]['bracket_opener']) === true) { |
|
811 | // Don't do this if it's the close parenthesis for the method. |
|
@@ 810-815 (lines=6) @@ | ||
807 | } |
|
808 | } |
|
809 | ||
810 | if (isset($tokens[$i]['bracket_opener']) === true) { |
|
811 | // Don't do this if it's the close parenthesis for the method. |
|
812 | if ($i !== $tokens[$i]['bracket_closer']) { |
|
813 | $i = ($tokens[$i]['bracket_closer'] + 1); |
|
814 | } |
|
815 | } |
|
816 | ||
817 | switch ($tokens[$i]['code']) { |
|
818 | case T_BITWISE_AND: |