|
@@ 1274-1279 (lines=6) @@
|
| 1271 |
|
// it's likely to be an array which might have arguments in it. This |
| 1272 |
|
// could cause problems in our parsing below, so lets just skip to the |
| 1273 |
|
// end of it. |
| 1274 |
|
if (isset($tokens[$i]['parenthesis_opener']) === true) { |
| 1275 |
|
// Don't do this if it's the close parenthesis for the method. |
| 1276 |
|
if ($i !== $tokens[$i]['parenthesis_closer']) { |
| 1277 |
|
$i = ($tokens[$i]['parenthesis_closer'] + 1); |
| 1278 |
|
} |
| 1279 |
|
} |
| 1280 |
|
|
| 1281 |
|
if (isset($tokens[$i]['bracket_opener']) === true) { |
| 1282 |
|
// Don't do this if it's the close parenthesis for the method. |
|
@@ 1281-1286 (lines=6) @@
|
| 1278 |
|
} |
| 1279 |
|
} |
| 1280 |
|
|
| 1281 |
|
if (isset($tokens[$i]['bracket_opener']) === true) { |
| 1282 |
|
// Don't do this if it's the close parenthesis for the method. |
| 1283 |
|
if ($i !== $tokens[$i]['bracket_closer']) { |
| 1284 |
|
$i = ($tokens[$i]['bracket_closer'] + 1); |
| 1285 |
|
} |
| 1286 |
|
} |
| 1287 |
|
|
| 1288 |
|
switch ($tokens[$i]['code']) { |
| 1289 |
|
case T_BITWISE_AND: |