| @@ 2200-2203 (lines=4) @@ | ||
| 2197 | echo '* searching for opener *'.PHP_EOL; |
|
| 2198 | } |
|
| 2199 | ||
| 2200 | if (isset($tokenizer->scopeOpeners[$tokenType]['end'][T_CLOSE_CURLY_BRACKET]) === true) { |
|
| 2201 | $oldIgnore = $ignore; |
|
| 2202 | $ignore = 0; |
|
| 2203 | } |
|
| 2204 | ||
| 2205 | // PHP has a max nesting level for functions. Stop before we hit that limit |
|
| 2206 | // because too many loops means we've run into trouble anyway. |
|
| @@ 2239-2241 (lines=3) @@ | ||
| 2236 | ||
| 2237 | $depth = $oldDepth; |
|
| 2238 | ||
| 2239 | if (isset($tokenizer->scopeOpeners[$tokenType]['end'][T_CLOSE_CURLY_BRACKET]) === true) { |
|
| 2240 | $ignore = $oldIgnore; |
|
| 2241 | } |
|
| 2242 | }//end if |
|
| 2243 | }//end if |
|
| 2244 | ||