|
@@ 735-740 (lines=6) @@
|
| 732 |
|
// it's likely to be an array which might have arguments in it. This |
| 733 |
|
// could cause problems in our parsing below, so lets just skip to the |
| 734 |
|
// end of it. |
| 735 |
|
if (isset($tokens[$i]['parenthesis_opener']) === true) { |
| 736 |
|
// Don't do this if it's the close parenthesis for the method. |
| 737 |
|
if ($i !== $tokens[$i]['parenthesis_closer']) { |
| 738 |
|
$i = ($tokens[$i]['parenthesis_closer'] + 1); |
| 739 |
|
} |
| 740 |
|
} |
| 741 |
|
|
| 742 |
|
if (isset($tokens[$i]['bracket_opener']) === true) { |
| 743 |
|
// Don't do this if it's the close parenthesis for the method. |
|
@@ 742-747 (lines=6) @@
|
| 739 |
|
} |
| 740 |
|
} |
| 741 |
|
|
| 742 |
|
if (isset($tokens[$i]['bracket_opener']) === true) { |
| 743 |
|
// Don't do this if it's the close parenthesis for the method. |
| 744 |
|
if ($i !== $tokens[$i]['bracket_closer']) { |
| 745 |
|
$i = ($tokens[$i]['bracket_closer'] + 1); |
| 746 |
|
} |
| 747 |
|
} |
| 748 |
|
|
| 749 |
|
switch ($tokens[$i]['code']) { |
| 750 |
|
case T_BITWISE_AND: |