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