Conditions | 3 |
Paths | 4 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
20 | 3 | public function __invoke(ShortcodeInterface $shortcode) |
|
21 | { |
||
22 | 3 | $email = $shortcode->getBbCode() ?: $shortcode->getContent(); |
|
23 | 3 | $content = $shortcode->getContent() === null ? $email : $shortcode->getContent(); |
|
24 | |||
25 | 3 | return '<a href="mailto:'.(string)$email.'">'.(string)$content.'</a>'; |
|
26 | } |
||
27 | } |
||
28 |