Total Complexity | 5 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 80% |
Changes | 0 |
1 | <?php |
||
24 | final class DescriptionTermContinueParser extends AbstractBlockContinueParser implements BlockContinueParserWithInlinesInterface |
||
25 | { |
||
26 | private DescriptionTerm $block; |
||
27 | |||
28 | private string $term; |
||
29 | |||
30 | 20 | public function __construct(string $term) |
|
34 | } |
||
35 | |||
36 | 20 | public function getBlock(): DescriptionTerm |
|
39 | } |
||
40 | |||
41 | public function tryContinue(Cursor $cursor, BlockContinueParserInterface $activeBlockParser): ?BlockContinue |
||
42 | { |
||
43 | return BlockContinue::finished(); |
||
44 | } |
||
45 | |||
46 | 20 | public function parseInlines(InlineParserEngineInterface $inlineParser): void |
|
50 | } |
||
51 | } |
||
53 |