| Total Complexity | 6 |
| Total Lines | 35 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 7 | class Image extends AbstractStringContainer implements EmojiContainerInterface |
||
| 8 | { |
||
| 9 | /** @var Emoji */ |
||
| 10 | private $emoji; |
||
| 11 | |||
| 12 | public function __construct(string $value, Emoji $emoji, string $url, ?string $alt = null, ?string $title = null) |
||
| 13 | { |
||
| 14 | parent::__construct($value); |
||
| 15 | |||
| 16 | $this->emoji = $emoji; |
||
| 17 | |||
| 18 | $this->attributes->set('src', $url); |
||
| 19 | |||
| 20 | if ($alt !== null) { |
||
| 21 | $this->attributes->set('alt', $alt); |
||
| 22 | } |
||
| 23 | |||
| 24 | if ($title !== null) { |
||
| 25 | $this->attributes->set('title', $title); |
||
| 26 | } |
||
| 27 | } |
||
| 28 | |||
| 29 | public function getEmoji(): Emoji |
||
| 30 | { |
||
| 31 | return $this->emoji; |
||
| 32 | } |
||
| 33 | |||
| 34 | public function getUrl(): string |
||
| 35 | { |
||
| 36 | return (string) $this->attributes->get('src'); |
||
| 37 | } |
||
| 38 | |||
| 39 | public function setUrl(string $url): void |
||
| 42 | } |
||
| 43 | } |
||
| 44 |