Total Complexity | 3 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
21 | class Hryvnia implements UnitInterface, DerivativeInterface |
||
22 | { |
||
23 | /** |
||
24 | * @inheritdoc |
||
25 | */ |
||
26 | public function getGender() |
||
27 | { |
||
28 | return Declinable::TYPE_FEMININE; |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * @inheritdoc |
||
33 | */ |
||
34 | public function getItems() |
||
35 | { |
||
36 | return ['гривна', 'гривны', 'гривен']; |
||
37 | } |
||
38 | |||
39 | /** |
||
40 | * @inheritdoc |
||
41 | */ |
||
42 | public function getDerivative(): UnitInterface |
||
45 | } |
||
46 | } |
||
47 |