| 1 | <?php declare(strict_types=1); |
||
| 25 | class MediaCredit |
||
| 26 | { |
||
| 27 | /** |
||
| 28 | * @var int |
||
| 29 | */ |
||
| 30 | protected $scheme; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @var string |
||
| 34 | */ |
||
| 35 | protected $role; |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @var string |
||
| 39 | */ |
||
| 40 | protected $value; |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @param int $scheme |
||
| 44 | * @return MediaCredit |
||
| 45 | */ |
||
| 46 | 2 | public function setScheme(int $scheme) : MediaCredit |
|
| 52 | |||
| 53 | /** |
||
| 54 | * @return int |
||
| 55 | */ |
||
| 56 | 2 | public function getScheme() : ? int |
|
| 60 | |||
| 61 | /** |
||
| 62 | * @param string $role |
||
| 63 | * @return MediaCredit |
||
| 64 | */ |
||
| 65 | 2 | public function setRole(?string $role) : MediaCredit |
|
| 71 | |||
| 72 | 2 | public function getRole() : ? string |
|
| 76 | |||
| 77 | /** |
||
| 78 | * @param string $value |
||
| 79 | * @return MediaCredit |
||
| 80 | */ |
||
| 81 | 2 | public function setValue(string $value) : MediaCredit |
|
| 87 | |||
| 88 | 2 | public function getValue() : string |
|
| 92 | } |
||
| 93 |