Total Complexity | 4 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Coverage | 63.64% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
5 | class Money |
||
6 | { |
||
7 | protected string $currencyCode; |
||
8 | |||
9 | protected string $value; |
||
10 | |||
11 | 4 | public function __construct(string $currencyCode, string $value) |
|
12 | { |
||
13 | 4 | $this->currencyCode = $currencyCode; |
|
14 | 4 | $this->value = $value; |
|
15 | 4 | } |
|
16 | |||
17 | public function getCurrencyCode(): string |
||
20 | } |
||
21 | |||
22 | public function getValue(): string |
||
25 | } |
||
26 | |||
27 | 4 | public function toArray(): array |
|
35 |