1 | <?php declare(strict_types=1); |
||
13 | class MediaLicense implements MediaLicenseInterface |
||
14 | { |
||
15 | /** |
||
16 | * @var string |
||
17 | */ |
||
18 | protected $content; |
||
19 | |||
20 | /** |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $url; |
||
24 | |||
25 | /** |
||
26 | * @var string |
||
27 | */ |
||
28 | protected $type; |
||
29 | |||
30 | /** |
||
31 | * @return string |
||
32 | */ |
||
33 | 1 | public function getContent() : ?string |
|
37 | |||
38 | /** |
||
39 | * @param string $content |
||
40 | * @return MediaLicenseInterface |
||
41 | */ |
||
42 | 1 | public function setContent(?string $content) : MediaLicenseInterface |
|
48 | |||
49 | /** |
||
50 | * @return string |
||
51 | */ |
||
52 | 1 | public function getUrl() : ?string |
|
56 | |||
57 | /** |
||
58 | * @param string $url |
||
59 | * @return MediaLicenseInterface |
||
60 | */ |
||
61 | 1 | public function setUrl(?string $url) : MediaLicenseInterface |
|
67 | |||
68 | /** |
||
69 | * @return string |
||
70 | */ |
||
71 | 1 | public function getType() : ?string |
|
75 | |||
76 | /** |
||
77 | * @param string $type |
||
78 | * @return MediaLicenseInterface |
||
79 | */ |
||
80 | 1 | public function setType(?string $type) : MediaLicenseInterface |
|
86 | } |
||
87 |