| 1 | <?php |
||
| 19 | class OfferArtistTitle extends AbstractOffer |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | private $artist; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var string |
||
| 28 | */ |
||
| 29 | private $title; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @var int |
||
| 33 | */ |
||
| 34 | private $year; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @var string |
||
| 38 | */ |
||
| 39 | private $media; |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @return string |
||
| 43 | */ |
||
| 44 | public function getType() |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @return string |
||
| 51 | */ |
||
| 52 | public function getArtist() |
||
| 56 | |||
| 57 | /** |
||
| 58 | * @param string $artist |
||
| 59 | * @return OfferArtistTitle |
||
| 60 | */ |
||
| 61 | public function setArtist($artist) |
||
| 67 | |||
| 68 | /** |
||
| 69 | * @return string |
||
| 70 | */ |
||
| 71 | public function getTitle() |
||
| 75 | |||
| 76 | /** |
||
| 77 | * @param string $title |
||
| 78 | * @return OfferArtistTitle |
||
| 79 | */ |
||
| 80 | public function setTitle($title) |
||
| 86 | |||
| 87 | /** |
||
| 88 | * @return int |
||
| 89 | */ |
||
| 90 | public function getYear() |
||
| 94 | |||
| 95 | /** |
||
| 96 | * @param int $year |
||
| 97 | * @return OfferArtistTitle |
||
| 98 | */ |
||
| 99 | public function setYear($year) |
||
| 105 | |||
| 106 | /** |
||
| 107 | * @return string |
||
| 108 | */ |
||
| 109 | public function getMedia() |
||
| 113 | |||
| 114 | /** |
||
| 115 | * @param string $media |
||
| 116 | * @return OfferArtistTitle |
||
| 117 | */ |
||
| 118 | public function setMedia($media) |
||
| 124 | |||
| 125 | /** |
||
| 126 | * @return array |
||
| 127 | */ |
||
| 128 | protected function getOptions() |
||
| 137 | } |
||
| 138 |