|
@@ 989-994 (lines=6) @@
|
| 986 |
|
// it's likely to be an array which might have arguments in it. This |
| 987 |
|
// could cause problems in our parsing below, so lets just skip to the |
| 988 |
|
// end of it. |
| 989 |
|
if (isset($tokens[$i]['parenthesis_opener']) === true) { |
| 990 |
|
// Don't do this if it's the close parenthesis for the method. |
| 991 |
|
if ($i !== $tokens[$i]['parenthesis_closer']) { |
| 992 |
|
$i = ($tokens[$i]['parenthesis_closer'] + 1); |
| 993 |
|
} |
| 994 |
|
} |
| 995 |
|
|
| 996 |
|
if (isset($tokens[$i]['bracket_opener']) === true) { |
| 997 |
|
// Don't do this if it's the close parenthesis for the method. |
|
@@ 996-1001 (lines=6) @@
|
| 993 |
|
} |
| 994 |
|
} |
| 995 |
|
|
| 996 |
|
if (isset($tokens[$i]['bracket_opener']) === true) { |
| 997 |
|
// Don't do this if it's the close parenthesis for the method. |
| 998 |
|
if ($i !== $tokens[$i]['bracket_closer']) { |
| 999 |
|
$i = ($tokens[$i]['bracket_closer'] + 1); |
| 1000 |
|
} |
| 1001 |
|
} |
| 1002 |
|
|
| 1003 |
|
switch ($tokens[$i]['code']) { |
| 1004 |
|
case T_BITWISE_AND: |