|
@@ 1009-1014 (lines=6) @@
|
| 1006 |
|
// it's likely to be an array which might have arguments in it. This |
| 1007 |
|
// could cause problems in our parsing below, so lets just skip to the |
| 1008 |
|
// end of it. |
| 1009 |
|
if (isset($tokens[$i]['parenthesis_opener']) === true) { |
| 1010 |
|
// Don't do this if it's the close parenthesis for the method. |
| 1011 |
|
if ($i !== $tokens[$i]['parenthesis_closer']) { |
| 1012 |
|
$i = ($tokens[$i]['parenthesis_closer'] + 1); |
| 1013 |
|
} |
| 1014 |
|
} |
| 1015 |
|
|
| 1016 |
|
if (isset($tokens[$i]['bracket_opener']) === true) { |
| 1017 |
|
// Don't do this if it's the close parenthesis for the method. |
|
@@ 1016-1021 (lines=6) @@
|
| 1013 |
|
} |
| 1014 |
|
} |
| 1015 |
|
|
| 1016 |
|
if (isset($tokens[$i]['bracket_opener']) === true) { |
| 1017 |
|
// Don't do this if it's the close parenthesis for the method. |
| 1018 |
|
if ($i !== $tokens[$i]['bracket_closer']) { |
| 1019 |
|
$i = ($tokens[$i]['bracket_closer'] + 1); |
| 1020 |
|
} |
| 1021 |
|
} |
| 1022 |
|
|
| 1023 |
|
switch ($tokens[$i]['code']) { |
| 1024 |
|
case T_BITWISE_AND: |