|
@@ 1336-1341 (lines=6) @@
|
| 1333 |
|
// it's likely to be an array which might have arguments in it. This |
| 1334 |
|
// could cause problems in our parsing below, so lets just skip to the |
| 1335 |
|
// end of it. |
| 1336 |
|
if (isset($tokens[$i]['parenthesis_opener']) === true) { |
| 1337 |
|
// Don't do this if it's the close parenthesis for the method. |
| 1338 |
|
if ($i !== $tokens[$i]['parenthesis_closer']) { |
| 1339 |
|
$i = ($tokens[$i]['parenthesis_closer'] + 1); |
| 1340 |
|
} |
| 1341 |
|
} |
| 1342 |
|
|
| 1343 |
|
if (isset($tokens[$i]['bracket_opener']) === true) { |
| 1344 |
|
// Don't do this if it's the close parenthesis for the method. |
|
@@ 1343-1348 (lines=6) @@
|
| 1340 |
|
} |
| 1341 |
|
} |
| 1342 |
|
|
| 1343 |
|
if (isset($tokens[$i]['bracket_opener']) === true) { |
| 1344 |
|
// Don't do this if it's the close parenthesis for the method. |
| 1345 |
|
if ($i !== $tokens[$i]['bracket_closer']) { |
| 1346 |
|
$i = ($tokens[$i]['bracket_closer'] + 1); |
| 1347 |
|
} |
| 1348 |
|
} |
| 1349 |
|
|
| 1350 |
|
switch ($tokens[$i]['type']) { |
| 1351 |
|
case 'T_BITWISE_AND': |