|
@@ 1077-1082 (lines=6) @@
|
| 1074 |
|
// it's likely to be an array which might have arguments in it. This |
| 1075 |
|
// could cause problems in our parsing below, so lets just skip to the |
| 1076 |
|
// end of it. |
| 1077 |
|
if (isset($tokens[$i]['parenthesis_opener']) === true) { |
| 1078 |
|
// Don't do this if it's the close parenthesis for the method. |
| 1079 |
|
if ($i !== $tokens[$i]['parenthesis_closer']) { |
| 1080 |
|
$i = ($tokens[$i]['parenthesis_closer'] + 1); |
| 1081 |
|
} |
| 1082 |
|
} |
| 1083 |
|
|
| 1084 |
|
if (isset($tokens[$i]['bracket_opener']) === true) { |
| 1085 |
|
// Don't do this if it's the close parenthesis for the method. |
|
@@ 1084-1089 (lines=6) @@
|
| 1081 |
|
} |
| 1082 |
|
} |
| 1083 |
|
|
| 1084 |
|
if (isset($tokens[$i]['bracket_opener']) === true) { |
| 1085 |
|
// Don't do this if it's the close parenthesis for the method. |
| 1086 |
|
if ($i !== $tokens[$i]['bracket_closer']) { |
| 1087 |
|
$i = ($tokens[$i]['bracket_closer'] + 1); |
| 1088 |
|
} |
| 1089 |
|
} |
| 1090 |
|
|
| 1091 |
|
switch ($tokens[$i]['code']) { |
| 1092 |
|
case T_BITWISE_AND: |