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