Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php # -*- coding: utf-8 -*- |
||
24 | 5 | public function render(array $content): string |
|
25 | 5 | { |
|
26 | 5 | $url = filter_var($content[1], FILTER_SANITIZE_URL); |
|
27 | 5 | $alt = ''; |
|
28 | 5 | if (isset($content[2])) { |
|
29 | 1 | $content[2] = str_replace('"', '', $content[2]); |
|
30 | 1 | $alt = ' alt="' . filter_var($content[2], FILTER_SANITIZE_STRING) . '"'; |
|
31 | } |
||
32 | |||
33 | 5 | return sprintf('<img src="%s"%s />', $url, $alt); |
|
34 | } |
||
36 |