| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | 2 | public function validate($value, string $name = '', array $options = []): bool |
|
| 17 | { |
||
| 18 | 2 | if (!in_array($value, ['0', '1'])) { |
|
| 19 | 1 | throw new TransformationException( |
|
| 20 | 1 | sprintf( |
|
| 21 | 1 | 'Invalid %s not boolean (expected: 0, 1) (actual: %s)', |
|
| 22 | 1 | $name, |
|
| 23 | 1 | $value |
|
| 24 | ) |
||
| 25 | ); |
||
| 26 | } |
||
| 27 | |||
| 28 | 1 | return true; |
|
| 29 | } |
||
| 31 |