|
@@ 663-668 (lines=6) @@
|
| 660 |
|
// it's likely to be an array which might have arguments in it. This |
| 661 |
|
// could cause problems in our parsing below, so lets just skip to the |
| 662 |
|
// end of it. |
| 663 |
|
if (isset($tokens[$i]['parenthesis_opener']) === true) { |
| 664 |
|
// Don't do this if it's the close parenthesis for the method. |
| 665 |
|
if ($i !== $tokens[$i]['parenthesis_closer']) { |
| 666 |
|
$i = ($tokens[$i]['parenthesis_closer'] + 1); |
| 667 |
|
} |
| 668 |
|
} |
| 669 |
|
|
| 670 |
|
if (isset($tokens[$i]['bracket_opener']) === true) { |
| 671 |
|
// Don't do this if it's the close parenthesis for the method. |
|
@@ 670-675 (lines=6) @@
|
| 667 |
|
} |
| 668 |
|
} |
| 669 |
|
|
| 670 |
|
if (isset($tokens[$i]['bracket_opener']) === true) { |
| 671 |
|
// Don't do this if it's the close parenthesis for the method. |
| 672 |
|
if ($i !== $tokens[$i]['bracket_closer']) { |
| 673 |
|
$i = ($tokens[$i]['bracket_closer'] + 1); |
| 674 |
|
} |
| 675 |
|
} |
| 676 |
|
|
| 677 |
|
switch ($tokens[$i]['code']) { |
| 678 |
|
case T_BITWISE_AND: |