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