|
@@ 745-750 (lines=6) @@
|
| 742 |
|
// it's likely to be an array which might have arguments in it. This |
| 743 |
|
// could cause problems in our parsing below, so lets just skip to the |
| 744 |
|
// end of it. |
| 745 |
|
if (isset($tokens[$i]['parenthesis_opener']) === true) { |
| 746 |
|
// Don't do this if it's the close parenthesis for the method. |
| 747 |
|
if ($i !== $tokens[$i]['parenthesis_closer']) { |
| 748 |
|
$i = ($tokens[$i]['parenthesis_closer'] + 1); |
| 749 |
|
} |
| 750 |
|
} |
| 751 |
|
|
| 752 |
|
if (isset($tokens[$i]['bracket_opener']) === true) { |
| 753 |
|
// Don't do this if it's the close parenthesis for the method. |
|
@@ 752-757 (lines=6) @@
|
| 749 |
|
} |
| 750 |
|
} |
| 751 |
|
|
| 752 |
|
if (isset($tokens[$i]['bracket_opener']) === true) { |
| 753 |
|
// Don't do this if it's the close parenthesis for the method. |
| 754 |
|
if ($i !== $tokens[$i]['bracket_closer']) { |
| 755 |
|
$i = ($tokens[$i]['bracket_closer'] + 1); |
| 756 |
|
} |
| 757 |
|
} |
| 758 |
|
|
| 759 |
|
switch ($tokens[$i]['code']) { |
| 760 |
|
case T_BITWISE_AND: |