| 1 | <?php |
||
| 22 | final class HeadingParser extends AbstractBlockContinueParser |
||
| 23 | { |
||
| 24 | /** @var Heading */ |
||
| 25 | private $block; |
||
| 26 | |||
| 27 | /** @var string */ |
||
| 28 | private $content; |
||
| 29 | |||
| 30 | 189 | public function __construct(int $level, string $content) |
|
| 35 | |||
| 36 | 189 | public function getBlock(): AbstractBlock |
|
| 40 | |||
| 41 | 111 | public function tryContinue(Cursor $cursor, BlockContinueParserInterface $activeBlockParser): ?BlockContinue |
|
| 45 | |||
| 46 | 189 | public function parseInlines(InlineParserEngineInterface $inlineParser): void |
|
| 50 | } |
||
| 51 |