1 | <?php |
||
23 | class TableCaption extends AbstractBlock implements InlineContainerInterface |
||
24 | { |
||
25 | public $id; |
||
26 | |||
27 | public function __construct(string $caption, string $id = null) |
||
33 | |||
34 | public function canContain(AbstractBlock $block): bool |
||
38 | |||
39 | public function acceptsLines(): bool |
||
43 | |||
44 | public function isCode(): bool |
||
48 | |||
49 | public function matchesNextLine(Cursor $cursor): bool |
||
53 | |||
54 | /** |
||
55 | * @return AbstractInline[] |
||
56 | */ |
||
57 | public function children(): array |
||
61 | } |
||
62 |