| Total Complexity | 3 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 85.71% |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class ImageConverter implements ConverterInterface |
||
| 10 | { |
||
| 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 | } |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @return string[] |
||
| 27 | */ |
||
| 28 | public function getSupportedTags(): array |
||
| 31 | 99 | } |
|
| 32 | } |
||
| 33 |