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