Total Complexity | 2 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
16 | class FloatGuard implements Guard |
||
17 | { |
||
18 | use ErrorMessagesBase; |
||
19 | use FloatBase; |
||
20 | use SingleInput; |
||
21 | |||
22 | 11 | public function __construct($input, ?float $default = null) |
|
23 | { |
||
24 | 11 | $this->input = $input; |
|
25 | 11 | $this->value = $default; |
|
26 | 11 | } |
|
27 | |||
28 | 8 | public function value(): ?float |
|
33 | } |
||
34 | } |
||
35 |