|
@@ 1260-1265 (lines=6) @@
|
| 1257 |
|
// it's likely to be an array which might have arguments in it. This |
| 1258 |
|
// could cause problems in our parsing below, so lets just skip to the |
| 1259 |
|
// end of it. |
| 1260 |
|
if (isset($tokens[$i]['parenthesis_opener']) === true) { |
| 1261 |
|
// Don't do this if it's the close parenthesis for the method. |
| 1262 |
|
if ($i !== $tokens[$i]['parenthesis_closer']) { |
| 1263 |
|
$i = ($tokens[$i]['parenthesis_closer'] + 1); |
| 1264 |
|
} |
| 1265 |
|
} |
| 1266 |
|
|
| 1267 |
|
if (isset($tokens[$i]['bracket_opener']) === true) { |
| 1268 |
|
// Don't do this if it's the close parenthesis for the method. |
|
@@ 1267-1272 (lines=6) @@
|
| 1264 |
|
} |
| 1265 |
|
} |
| 1266 |
|
|
| 1267 |
|
if (isset($tokens[$i]['bracket_opener']) === true) { |
| 1268 |
|
// Don't do this if it's the close parenthesis for the method. |
| 1269 |
|
if ($i !== $tokens[$i]['bracket_closer']) { |
| 1270 |
|
$i = ($tokens[$i]['bracket_closer'] + 1); |
| 1271 |
|
} |
| 1272 |
|
} |
| 1273 |
|
|
| 1274 |
|
switch ($tokens[$i]['code']) { |
| 1275 |
|
case T_BITWISE_AND: |