| 1 | <?php |
||
| 25 | class TableCaption extends AbstractStringContainerBlock implements InlineContainerInterface |
||
| 26 | { |
||
| 27 | public $id; |
||
| 28 | |||
| 29 | public function __construct(string $caption, string $id = null) |
||
| 35 | |||
| 36 | public function canContain(AbstractBlock $block): bool |
||
| 40 | |||
| 41 | public function acceptsLines(): bool |
||
| 45 | |||
| 46 | public function isCode(): bool |
||
| 50 | |||
| 51 | public function matchesNextLine(Cursor $cursor): bool |
||
| 55 | |||
| 56 | /** |
||
| 57 | * @return AbstractInline[] |
||
| 58 | */ |
||
| 59 | public function children(): array |
||
| 63 | |||
| 64 | public function handleRemainingContents(ContextInterface $context, Cursor $cursor): void |
||
| 67 | } |
||
| 68 |