| 1 | <?php |
||
| 24 | class TableSection extends AbstractStringContainerBlock implements InlineContainerInterface |
||
| 25 | { |
||
| 26 | const TYPE_HEAD = 'thead'; |
||
| 27 | const TYPE_BODY = 'tbody'; |
||
| 28 | |||
| 29 | public $type = self::TYPE_BODY; |
||
| 30 | |||
| 31 | 34 | public function __construct(string $type = self::TYPE_BODY) |
|
| 36 | |||
| 37 | public function isHead(): bool |
||
| 41 | |||
| 42 | public function isBody(): bool |
||
| 46 | |||
| 47 | public function canContain(AbstractBlock $block): bool |
||
| 51 | |||
| 52 | public function isCode(): bool |
||
| 56 | |||
| 57 | 34 | public function matchesNextLine(Cursor $cursor): bool |
|
| 61 | |||
| 62 | public function handleRemainingContents(ContextInterface $context, Cursor $cursor): void |
||
| 65 | } |
||
| 66 |