| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | 57 | public function parse(InlineParserContext $inlineContext): bool |
|
| 31 | { |
||
| 32 | 57 | if ($m = $inlineContext->getCursor()->match('/^' . RegexHelper::PARTIAL_ENTITY . '/i')) { |
|
| 33 | 42 | $inlineContext->getContainer()->appendChild(new Text(Html5EntityDecoder::decode($m))); |
|
| 34 | |||
| 35 | 42 | return true; |
|
| 36 | } |
||
| 37 | |||
| 38 | 24 | return false; |
|
| 39 | } |
||
| 40 | } |
||
| 41 |