Total Complexity | 5 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Coverage | 81.82% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
25 | final class DescriptionTermContinueParser extends AbstractBlockContinueParser implements BlockContinueParserWithInlinesInterface |
||
26 | { |
||
27 | /** @var DescriptionTerm */ |
||
28 | private $block; |
||
29 | |||
30 | /** @var string */ |
||
31 | private $term; |
||
32 | |||
33 | 30 | public function __construct(string $term) |
|
37 | 30 | } |
|
38 | |||
39 | 30 | public function getBlock(): AbstractBlock |
|
42 | } |
||
43 | |||
44 | public function tryContinue(Cursor $cursor, BlockContinueParserInterface $activeBlockParser): ?BlockContinue |
||
45 | { |
||
46 | return BlockContinue::finished(); |
||
47 | } |
||
48 | |||
49 | 30 | public function parseInlines(InlineParserEngineInterface $inlineParser): void |
|
53 | } |
||
54 | 30 | } |
|
56 |