| Total Complexity | 3 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | final class IntegerType extends GenericIntegerType implements ConstantScalarType |
||
| 14 | { |
||
| 15 | /** @var int */ |
||
| 16 | private $value; |
||
| 17 | |||
| 18 | public function __construct(int $value) |
||
| 19 | { |
||
| 20 | $this->value = $value; |
||
| 21 | } |
||
| 22 | |||
| 23 | public function getValue() : int |
||
| 26 | } |
||
| 27 | |||
| 28 | public function validate($value) : bool |
||
| 31 | } |
||
| 32 | } |
||
| 33 |