| 1 | <?php |
||
| 5 | abstract class FilmAbstract implements FilmInterface |
||
| 6 | { |
||
| 7 | |||
| 8 | /** |
||
| 9 | * @var string |
||
| 10 | */ |
||
| 11 | public $name; |
||
| 12 | |||
| 13 | |||
| 14 | /** |
||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | public $manufacturer; |
||
| 18 | |||
| 19 | |||
| 20 | /** |
||
| 21 | * @var int|null |
||
| 22 | */ |
||
| 23 | public $asa; |
||
| 24 | |||
| 25 | |||
| 26 | /** |
||
| 27 | * @return string|null |
||
| 28 | */ |
||
| 29 | 64 | public function getName() |
|
| 33 | |||
| 34 | |||
| 35 | /** |
||
| 36 | * @return string|null |
||
| 37 | */ |
||
| 38 | 64 | public function getManufacturer() |
|
| 42 | |||
| 43 | |||
| 44 | /** |
||
| 45 | * @return int|null |
||
| 46 | */ |
||
| 47 | 64 | public function getAsa() |
|
| 51 | |||
| 52 | |||
| 53 | } |
||
| 54 |