@@ 1076-1081 (lines=6) @@ | ||
1073 | // it's likely to be an array which might have arguments in it. This |
|
1074 | // could cause problems in our parsing below, so lets just skip to the |
|
1075 | // end of it. |
|
1076 | if (isset($tokens[$i]['parenthesis_opener']) === true) { |
|
1077 | // Don't do this if it's the close parenthesis for the method. |
|
1078 | if ($i !== $tokens[$i]['parenthesis_closer']) { |
|
1079 | $i = ($tokens[$i]['parenthesis_closer'] + 1); |
|
1080 | } |
|
1081 | } |
|
1082 | ||
1083 | if (isset($tokens[$i]['bracket_opener']) === true) { |
|
1084 | // Don't do this if it's the close parenthesis for the method. |
|
@@ 1083-1088 (lines=6) @@ | ||
1080 | } |
|
1081 | } |
|
1082 | ||
1083 | if (isset($tokens[$i]['bracket_opener']) === true) { |
|
1084 | // Don't do this if it's the close parenthesis for the method. |
|
1085 | if ($i !== $tokens[$i]['bracket_closer']) { |
|
1086 | $i = ($tokens[$i]['bracket_closer'] + 1); |
|
1087 | } |
|
1088 | } |
|
1089 | ||
1090 | switch ($tokens[$i]['code']) { |
|
1091 | case T_BITWISE_AND: |