Total Complexity | 3 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
13 | final class ConstantIntegerType extends IntegerType implements ConstantScalarType |
||
14 | { |
||
15 | /** @var int */ |
||
16 | private $value; |
||
17 | |||
18 | 4 | public function __construct(int $value) |
|
21 | 4 | } |
|
22 | |||
23 | 3 | public function describe() : string |
|
26 | } |
||
27 | |||
28 | /** |
||
29 | * @param mixed $value |
||
30 | */ |
||
31 | 2 | public function validate($value) : bool |
|
36 |