| @@ 3421-3428 (lines=8) @@ | ||
| 3418 | $endTokens[T_CLOSE_TAG] = true; |
|
| 3419 | $endTokens[T_OPEN_SHORT_ARRAY] = true; |
|
| 3420 | ||
| 3421 | if ($ignore !== null) { |
|
| 3422 | $ignore = (array) $ignore; |
|
| 3423 | foreach ($ignore as $code) { |
|
| 3424 | if (isset($endTokens[$code]) === true) { |
|
| 3425 | unset($endTokens[$code]); |
|
| 3426 | } |
|
| 3427 | } |
|
| 3428 | } |
|
| 3429 | ||
| 3430 | $lastNotEmpty = $start; |
|
| 3431 | ||
| @@ 3489-3496 (lines=8) @@ | ||
| 3486 | T_CLOSE_TAG => true, |
|
| 3487 | ); |
|
| 3488 | ||
| 3489 | if ($ignore !== null) { |
|
| 3490 | $ignore = (array) $ignore; |
|
| 3491 | foreach ($ignore as $code) { |
|
| 3492 | if (isset($endTokens[$code]) === true) { |
|
| 3493 | unset($endTokens[$code]); |
|
| 3494 | } |
|
| 3495 | } |
|
| 3496 | } |
|
| 3497 | ||
| 3498 | $lastNotEmpty = $start; |
|
| 3499 | ||