| 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 (!$value instanceof \DateTime) { |
|
| 19 | 1 | throw new TransformationException( |
|
| 20 | 1 | sprintf( |
|
| 21 | 1 | 'invalid %s is not an datetime (actual: %s)', |
|
| 22 | 1 | $name, |
|
| 23 | 1 | gettype($value) |
|
| 24 | ) |
||
| 25 | ); |
||
| 26 | } |
||
| 27 | |||
| 28 | 1 | return true; |
|
| 29 | } |
||
| 31 |