@@ 1204-1209 (lines=6) @@ | ||
1201 | // it's likely to be an array which might have arguments in it. This |
|
1202 | // could cause problems in our parsing below, so lets just skip to the |
|
1203 | // end of it. |
|
1204 | if (isset($tokens[$i]['parenthesis_opener']) === true) { |
|
1205 | // Don't do this if it's the close parenthesis for the method. |
|
1206 | if ($i !== $tokens[$i]['parenthesis_closer']) { |
|
1207 | $i = ($tokens[$i]['parenthesis_closer'] + 1); |
|
1208 | } |
|
1209 | } |
|
1210 | ||
1211 | if (isset($tokens[$i]['bracket_opener']) === true) { |
|
1212 | // Don't do this if it's the close parenthesis for the method. |
|
@@ 1211-1216 (lines=6) @@ | ||
1208 | } |
|
1209 | } |
|
1210 | ||
1211 | if (isset($tokens[$i]['bracket_opener']) === true) { |
|
1212 | // Don't do this if it's the close parenthesis for the method. |
|
1213 | if ($i !== $tokens[$i]['bracket_closer']) { |
|
1214 | $i = ($tokens[$i]['bracket_closer'] + 1); |
|
1215 | } |
|
1216 | } |
|
1217 | ||
1218 | switch ($tokens[$i]['code']) { |
|
1219 | case T_BITWISE_AND: |