| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | public function convert(ElementInterface $element): string |
||
| 12 | { |
||
| 13 | $src = $element->getAttribute('src'); |
||
| 14 | 6 | $alt = $element->getAttribute('alt'); |
|
| 15 | $title = $element->getAttribute('title'); |
||
| 16 | 6 | ||
| 17 | 6 | if ($title !== '') { |
|
| 18 | 6 | // No newlines added. <img> should be in a block-level element. |
|
| 19 | return ''; |
||
| 20 | 6 | } |
|
| 21 | |||
| 22 | 6 | return ''; |
|
| 23 | } |
||
| 33 |