| 1 | <?php declare(strict_types=1); |
||
| 13 | class MediaRating implements MediaRatingInterface |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var string |
||
| 17 | */ |
||
| 18 | protected $content; |
||
| 19 | |||
| 20 | |||
| 21 | /** |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | protected $scheme; |
||
| 25 | |||
| 26 | |||
| 27 | /** |
||
| 28 | * @return string |
||
| 29 | */ |
||
| 30 | 2 | public function getContent() : ?string |
|
| 34 | |||
| 35 | /** |
||
| 36 | * @param string $content |
||
| 37 | * @return MediaRatingInterface |
||
| 38 | */ |
||
| 39 | 2 | public function setContent(?string $content) : MediaRatingInterface |
|
| 45 | |||
| 46 | /** |
||
| 47 | * @return string |
||
| 48 | */ |
||
| 49 | 2 | public function getScheme() : ?string |
|
| 53 | |||
| 54 | /** |
||
| 55 | * @param string $scheme |
||
| 56 | * @return MediaRatingInterface |
||
| 57 | */ |
||
| 58 | 2 | public function setScheme(?string $scheme) : MediaRatingInterface |
|
| 64 | } |
||
| 65 |