Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
12 | class Integer extends ValueObject |
||
13 | { |
||
14 | /** |
||
15 | * Create a new instance of the value object. |
||
16 | * |
||
17 | * @param int|float|string|null $integer |
||
18 | */ |
||
19 | 9 | public function __construct(protected int|float|string|null $integer) |
|
21 | // |
||
22 | } |
||
23 | |||
24 | /** |
||
25 | * Get the object value. |
||
26 | * |
||
27 | * @return int |
||
28 | */ |
||
29 | 9 | public function value(): int |
|
34 |