| Conditions | 3 |
| Paths | 3 |
| Total Lines | 14 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | 10 | public function transform($value) |
|
| 13 | { |
||
| 14 | 10 | if (is_null($value)) { |
|
| 15 | 2 | return null; |
|
| 16 | } |
||
| 17 | |||
| 18 | 8 | if (!$value instanceof \DateTime) { |
|
| 19 | 6 | throw new TransformationFailedException( |
|
| 20 | 6 | sprintf('Expected a DateTime to transform, got "%s" instead.', json_encode($value)) |
|
| 21 | 6 | ); |
|
| 22 | } |
||
| 23 | |||
| 24 | 2 | return $value->format(DATE_ISO8601); |
|
| 25 | } |
||
| 26 | } |
||
| 27 |