Total Complexity | 4 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | final class EditSettings implements CommandInterface |
||
22 | { |
||
23 | public string $uuid; |
||
24 | private string $locale; |
||
25 | private string $currency; |
||
26 | |||
27 | public function __construct(string $locale, string $currency) |
||
31 | } |
||
32 | |||
33 | public function uuid(): ResourceUuid |
||
34 | { |
||
35 | return ResourceUuid::fromString($this->uuid); |
||
36 | } |
||
37 | |||
38 | public function locale(): Locale |
||
41 | } |
||
42 | |||
43 | public function currency(): Currency |
||
48 |