| 1 | <?php |
||
| 9 | class RelatedItem implements RelatedItemInterface |
||
| 10 | { |
||
| 11 | /** @var string */ |
||
| 12 | protected $title; |
||
| 13 | |||
| 14 | /** @var string */ |
||
| 15 | protected $link; |
||
| 16 | |||
| 17 | /** @var string */ |
||
| 18 | protected $img; |
||
| 19 | |||
| 20 | 20 | public function __construct(string $title, string $link, string $img = '') |
|
| 26 | |||
| 27 | 4 | public function appendTo(RelatedItemsListInterface $relatedItemsList): RelatedItemInterface |
|
| 32 | |||
| 33 | 8 | public function asXML(): SimpleXMLElement |
|
| 46 | } |
||
| 47 |