1 | <?php |
||
4 | abstract class FilmSpeedAbstract implements FilmSpeedInterface |
||
5 | { |
||
6 | |||
7 | /** |
||
8 | * @var float |
||
9 | */ |
||
10 | protected $din; |
||
11 | |||
12 | |||
13 | /** |
||
14 | * @var float |
||
15 | */ |
||
16 | protected $asa; |
||
17 | |||
18 | |||
19 | /** |
||
20 | * @inheritDoc |
||
21 | */ |
||
22 | 44 | public function getDin() : float |
|
26 | |||
27 | |||
28 | /** |
||
29 | * @inheritDoc |
||
30 | */ |
||
31 | 44 | public function getAsa() : float |
|
35 | |||
36 | |||
37 | /** |
||
38 | * @inheritDoc |
||
39 | */ |
||
40 | public function getIso( ) : string |
||
47 | |||
48 | } |
||
49 |