@@ 1110-1115 (lines=6) @@ | ||
1107 | // it's likely to be an array which might have arguments in it. This |
|
1108 | // could cause problems in our parsing below, so lets just skip to the |
|
1109 | // end of it. |
|
1110 | if (isset($tokens[$i]['parenthesis_opener']) === true) { |
|
1111 | // Don't do this if it's the close parenthesis for the method. |
|
1112 | if ($i !== $tokens[$i]['parenthesis_closer']) { |
|
1113 | $i = ($tokens[$i]['parenthesis_closer'] + 1); |
|
1114 | } |
|
1115 | } |
|
1116 | ||
1117 | if (isset($tokens[$i]['bracket_opener']) === true) { |
|
1118 | // Don't do this if it's the close parenthesis for the method. |
|
@@ 1117-1122 (lines=6) @@ | ||
1114 | } |
|
1115 | } |
|
1116 | ||
1117 | if (isset($tokens[$i]['bracket_opener']) === true) { |
|
1118 | // Don't do this if it's the close parenthesis for the method. |
|
1119 | if ($i !== $tokens[$i]['bracket_closer']) { |
|
1120 | $i = ($tokens[$i]['bracket_closer'] + 1); |
|
1121 | } |
|
1122 | } |
|
1123 | ||
1124 | switch ($tokens[$i]['code']) { |
|
1125 | case T_BITWISE_AND: |