@@ 850-855 (lines=6) @@ | ||
847 | // it's likely to be an array which might have arguments in it. This |
|
848 | // could cause problems in our parsing below, so lets just skip to the |
|
849 | // end of it. |
|
850 | if (isset($tokens[$i]['parenthesis_opener']) === true) { |
|
851 | // Don't do this if it's the close parenthesis for the method. |
|
852 | if ($i !== $tokens[$i]['parenthesis_closer']) { |
|
853 | $i = ($tokens[$i]['parenthesis_closer'] + 1); |
|
854 | } |
|
855 | } |
|
856 | ||
857 | if (isset($tokens[$i]['bracket_opener']) === true) { |
|
858 | // Don't do this if it's the close parenthesis for the method. |
|
@@ 857-862 (lines=6) @@ | ||
854 | } |
|
855 | } |
|
856 | ||
857 | if (isset($tokens[$i]['bracket_opener']) === true) { |
|
858 | // Don't do this if it's the close parenthesis for the method. |
|
859 | if ($i !== $tokens[$i]['bracket_closer']) { |
|
860 | $i = ($tokens[$i]['bracket_closer'] + 1); |
|
861 | } |
|
862 | } |
|
863 | ||
864 | switch ($tokens[$i]['code']) { |
|
865 | case T_BITWISE_AND: |