|
@@ 899-904 (lines=6) @@
|
| 896 |
|
// it's likely to be an array which might have arguments in it. This |
| 897 |
|
// could cause problems in our parsing below, so lets just skip to the |
| 898 |
|
// end of it. |
| 899 |
|
if (isset($tokens[$i]['parenthesis_opener']) === true) { |
| 900 |
|
// Don't do this if it's the close parenthesis for the method. |
| 901 |
|
if ($i !== $tokens[$i]['parenthesis_closer']) { |
| 902 |
|
$i = ($tokens[$i]['parenthesis_closer'] + 1); |
| 903 |
|
} |
| 904 |
|
} |
| 905 |
|
|
| 906 |
|
if (isset($tokens[$i]['bracket_opener']) === true) { |
| 907 |
|
// Don't do this if it's the close parenthesis for the method. |
|
@@ 906-911 (lines=6) @@
|
| 903 |
|
} |
| 904 |
|
} |
| 905 |
|
|
| 906 |
|
if (isset($tokens[$i]['bracket_opener']) === true) { |
| 907 |
|
// Don't do this if it's the close parenthesis for the method. |
| 908 |
|
if ($i !== $tokens[$i]['bracket_closer']) { |
| 909 |
|
$i = ($tokens[$i]['bracket_closer'] + 1); |
| 910 |
|
} |
| 911 |
|
} |
| 912 |
|
|
| 913 |
|
switch ($tokens[$i]['code']) { |
| 914 |
|
case T_BITWISE_AND: |