Conditions | 3 |
Paths | 3 |
Total Lines | 17 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 10 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
16 | 2 | public function validate($value, string $name = '', array $options = []): bool |
|
17 | { |
||
18 | 2 | if (is_int($value)) { |
|
19 | 1 | return true; |
|
20 | } |
||
21 | |||
22 | 2 | if (false === ctype_digit($value)) { |
|
23 | 1 | throw new TransformationException( |
|
24 | 1 | sprintf( |
|
25 | 1 | 'invalid %s is not an integer (actual: %s)', |
|
26 | 1 | $name, |
|
27 | 1 | $value |
|
28 | ) |
||
29 | ); |
||
30 | } |
||
31 | |||
32 | 1 | return true; |
|
33 | } |
||
35 |