| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | 12 | public function render(AbstractInline $inline, ElementRendererInterface $htmlRenderer) |
|
| 26 | { |
||
| 27 | 12 | if (!($inline instanceof Strikethrough)) { |
|
| 28 | 3 | throw new \InvalidArgumentException('Incompatible inline type: ' . get_class($inline)); |
|
| 29 | } |
||
| 30 | |||
| 31 | 9 | return new HtmlElement('del', $inline->getData('attributes', []), Xml::escape($inline->getContent())); |
|
| 32 | } |
||
| 33 | } |
||
| 34 |