|
@@ 952-957 (lines=6) @@
|
| 949 |
|
// it's likely to be an array which might have arguments in it. This |
| 950 |
|
// could cause problems in our parsing below, so lets just skip to the |
| 951 |
|
// end of it. |
| 952 |
|
if (isset($tokens[$i]['parenthesis_opener']) === true) { |
| 953 |
|
// Don't do this if it's the close parenthesis for the method. |
| 954 |
|
if ($i !== $tokens[$i]['parenthesis_closer']) { |
| 955 |
|
$i = ($tokens[$i]['parenthesis_closer'] + 1); |
| 956 |
|
} |
| 957 |
|
} |
| 958 |
|
|
| 959 |
|
if (isset($tokens[$i]['bracket_opener']) === true) { |
| 960 |
|
// Don't do this if it's the close parenthesis for the method. |
|
@@ 959-964 (lines=6) @@
|
| 956 |
|
} |
| 957 |
|
} |
| 958 |
|
|
| 959 |
|
if (isset($tokens[$i]['bracket_opener']) === true) { |
| 960 |
|
// Don't do this if it's the close parenthesis for the method. |
| 961 |
|
if ($i !== $tokens[$i]['bracket_closer']) { |
| 962 |
|
$i = ($tokens[$i]['bracket_closer'] + 1); |
| 963 |
|
} |
| 964 |
|
} |
| 965 |
|
|
| 966 |
|
switch ($tokens[$i]['code']) { |
| 967 |
|
case T_BITWISE_AND: |