| Conditions | 3 |
| Paths | 4 |
| Total Lines | 14 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | public function transform($value) |
||
| 12 | { |
||
| 13 | if (empty($value)) { |
||
| 14 | $this->throwInvalidConstraintExceptionForDateTime($value); |
||
| 15 | } |
||
| 16 | |||
| 17 | try { |
||
| 18 | $date = new \DateTime($value); |
||
| 19 | } catch (\Exception $e) { |
||
| 20 | $this->throwInvalidConstraintExceptionForDateTime($value); |
||
| 21 | } |
||
| 22 | |||
| 23 | return $date; |
||
| 24 | } |
||
| 25 | |||
| 35 |