Total Complexity | 3 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
20 | class Rouble implements UnitInterface, DerivativeInterface |
||
21 | { |
||
22 | /** |
||
23 | * @inheritdoc |
||
24 | */ |
||
25 | public function getGender() |
||
26 | { |
||
27 | return Declinable::TYPE_MASCULINE; |
||
28 | } |
||
29 | |||
30 | /** |
||
31 | * @inheritdoc |
||
32 | */ |
||
33 | public function getItems() |
||
36 | } |
||
37 | |||
38 | /** |
||
39 | * @inheritdoc |
||
40 | */ |
||
41 | public function getDerivative(): UnitInterface |
||
44 | } |
||
45 | } |