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