| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class IntegerType extends TypeValue implements Stringable |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * IntegerType constructor. |
||
| 16 | * |
||
| 17 | * @param int $value |
||
| 18 | */ |
||
| 19 | 10 | public function __construct(int $value) |
|
| 20 | { |
||
| 21 | 10 | parent::__construct($value); |
|
| 22 | 10 | } |
|
| 23 | |||
| 24 | /** |
||
| 25 | * {@inheritdoc} |
||
| 26 | */ |
||
| 27 | 1 | public function __toString(): string |
|
| 30 | } |
||
| 31 | } |
||
| 32 |