@@ 1127-1132 (lines=6) @@ | ||
1124 | // it's likely to be an array which might have arguments in it. This |
|
1125 | // could cause problems in our parsing below, so lets just skip to the |
|
1126 | // end of it. |
|
1127 | if (isset($tokens[$i]['parenthesis_opener']) === true) { |
|
1128 | // Don't do this if it's the close parenthesis for the method. |
|
1129 | if ($i !== $tokens[$i]['parenthesis_closer']) { |
|
1130 | $i = ($tokens[$i]['parenthesis_closer'] + 1); |
|
1131 | } |
|
1132 | } |
|
1133 | ||
1134 | if (isset($tokens[$i]['bracket_opener']) === true) { |
|
1135 | // Don't do this if it's the close parenthesis for the method. |
|
@@ 1134-1139 (lines=6) @@ | ||
1131 | } |
|
1132 | } |
|
1133 | ||
1134 | if (isset($tokens[$i]['bracket_opener']) === true) { |
|
1135 | // Don't do this if it's the close parenthesis for the method. |
|
1136 | if ($i !== $tokens[$i]['bracket_closer']) { |
|
1137 | $i = ($tokens[$i]['bracket_closer'] + 1); |
|
1138 | } |
|
1139 | } |
|
1140 | ||
1141 | switch ($tokens[$i]['code']) { |
|
1142 | case T_BITWISE_AND: |