|
@@ 1316-1321 (lines=6) @@
|
| 1313 |
|
// it's likely to be an array which might have arguments in it. This |
| 1314 |
|
// could cause problems in our parsing below, so lets just skip to the |
| 1315 |
|
// end of it. |
| 1316 |
|
if (isset($tokens[$i]['parenthesis_opener']) === true) { |
| 1317 |
|
// Don't do this if it's the close parenthesis for the method. |
| 1318 |
|
if ($i !== $tokens[$i]['parenthesis_closer']) { |
| 1319 |
|
$i = ($tokens[$i]['parenthesis_closer'] + 1); |
| 1320 |
|
} |
| 1321 |
|
} |
| 1322 |
|
|
| 1323 |
|
if (isset($tokens[$i]['bracket_opener']) === true) { |
| 1324 |
|
// Don't do this if it's the close parenthesis for the method. |
|
@@ 1323-1328 (lines=6) @@
|
| 1320 |
|
} |
| 1321 |
|
} |
| 1322 |
|
|
| 1323 |
|
if (isset($tokens[$i]['bracket_opener']) === true) { |
| 1324 |
|
// Don't do this if it's the close parenthesis for the method. |
| 1325 |
|
if ($i !== $tokens[$i]['bracket_closer']) { |
| 1326 |
|
$i = ($tokens[$i]['bracket_closer'] + 1); |
| 1327 |
|
} |
| 1328 |
|
} |
| 1329 |
|
|
| 1330 |
|
switch ($tokens[$i]['code']) { |
| 1331 |
|
case T_BITWISE_AND: |