| 1 | <?php |
||
| 22 | abstract class AbstractBlockContinueParser implements BlockContinueParserInterface |
||
| 23 | { |
||
| 24 | 978 | public function isContainer(): bool |
|
| 28 | |||
| 29 | 111 | public function canHaveLazyContinuationLines(): bool |
|
| 33 | |||
| 34 | 75 | public function canContain(AbstractBlock $childBlock): bool |
|
| 38 | |||
| 39 | 267 | public function addLine(string $line): void |
|
| 42 | |||
| 43 | 2493 | public function closeBlock(): void |
|
| 46 | |||
| 47 | 2493 | public function parseInlines(InlineParserEngineInterface $inlineParser): void |
|
| 50 | } |
||
| 51 |