1 | <?php |
||
23 | class TableRows extends AbstractStringContainerBlock implements InlineContainerInterface |
||
24 | { |
||
25 | const TYPE_HEAD = 'thead'; |
||
26 | const TYPE_BODY = 'tbody'; |
||
27 | |||
28 | public $type = self::TYPE_BODY; |
||
29 | |||
30 | public function __construct(string $type = self::TYPE_BODY) |
||
35 | |||
36 | public function isHead(): bool |
||
40 | |||
41 | public function isBody(): bool |
||
45 | |||
46 | public function canContain(AbstractBlock $block): bool |
||
50 | |||
51 | public function isCode(): bool |
||
55 | |||
56 | public function matchesNextLine(Cursor $cursor): bool |
||
60 | |||
61 | public function handleRemainingContents(ContextInterface $context, Cursor $cursor): void |
||
64 | } |
||
65 |