| 1 | <?php |
||
| 10 | class MinifyHtmlTokenParser extends AbstractTokenParser |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @param Token $token |
||
| 14 | * |
||
| 15 | * @return bool |
||
| 16 | */ |
||
| 17 | 2 | public function decideHtmlCompressEnd(Token $token): bool |
|
| 21 | |||
| 22 | /** @noinspection PhpMissingParentCallCommonInspection */ |
||
| 23 | 6 | public function getTag(): string |
|
| 27 | |||
| 28 | /** |
||
| 29 | * @param Token $token |
||
| 30 | * |
||
| 31 | * @return MinifyHtmlNode |
||
| 32 | */ |
||
| 33 | 2 | public function parse(Token $token): MinifyHtmlNode |
|
| 44 | } |
||
| 45 |