1 | <?php |
||
19 | class LinkedArticle |
||
20 | { |
||
21 | public const RELATIONSHIP_RELATED = 'related'; |
||
22 | |||
23 | public const RELATIONSHIP_PROMOTED = 'promoted'; |
||
24 | |||
25 | /** @var string */ |
||
26 | private $url; |
||
27 | |||
28 | /** @var string */ |
||
29 | private $relationship; |
||
30 | |||
31 | public function __construct(string $url, string $relationship) |
||
36 | |||
37 | public function getUrl(): string |
||
41 | |||
42 | public function getRelationship(): string |
||
46 | } |
||
47 |