@@ 1179-1184 (lines=6) @@ | ||
1176 | // it's likely to be an array which might have arguments in it. This |
|
1177 | // could cause problems in our parsing below, so lets just skip to the |
|
1178 | // end of it. |
|
1179 | if (isset($tokens[$i]['parenthesis_opener']) === true) { |
|
1180 | // Don't do this if it's the close parenthesis for the method. |
|
1181 | if ($i !== $tokens[$i]['parenthesis_closer']) { |
|
1182 | $i = ($tokens[$i]['parenthesis_closer'] + 1); |
|
1183 | } |
|
1184 | } |
|
1185 | ||
1186 | if (isset($tokens[$i]['bracket_opener']) === true) { |
|
1187 | // Don't do this if it's the close parenthesis for the method. |
|
@@ 1186-1191 (lines=6) @@ | ||
1183 | } |
|
1184 | } |
|
1185 | ||
1186 | if (isset($tokens[$i]['bracket_opener']) === true) { |
|
1187 | // Don't do this if it's the close parenthesis for the method. |
|
1188 | if ($i !== $tokens[$i]['bracket_closer']) { |
|
1189 | $i = ($tokens[$i]['bracket_closer'] + 1); |
|
1190 | } |
|
1191 | } |
|
1192 | ||
1193 | switch ($tokens[$i]['code']) { |
|
1194 | case T_BITWISE_AND: |