1 | <?php declare(strict_types=1); |
||
13 | class MediaPeerLink implements MediaPeerLinkInterface |
||
14 | { |
||
15 | /** |
||
16 | * @var string |
||
17 | */ |
||
18 | protected $url; |
||
19 | |||
20 | /** |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $type; |
||
24 | |||
25 | /** |
||
26 | * @return string |
||
27 | */ |
||
28 | 1 | public function getUrl() : ?string |
|
32 | |||
33 | /** |
||
34 | * @param string $url |
||
35 | * @return MediaPeerLinkInterface |
||
36 | */ |
||
37 | 1 | public function setUrl(?string $url) : MediaPeerLinkInterface |
|
43 | |||
44 | /** |
||
45 | * @return string |
||
46 | */ |
||
47 | 1 | public function getType() : ?string |
|
51 | |||
52 | /** |
||
53 | * @param string $type |
||
54 | * @return MediaPeerLinkInterface |
||
55 | */ |
||
56 | 1 | public function setType(?string $type) : MediaPeerLinkInterface |
|
62 | } |
||
63 |