| Conditions | 3 |
| Paths | 3 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 53 | public function render($value, $object, $primary, \Twig_Environment $twig) |
||
| 54 | { |
||
| 55 | if ($value === null) { |
||
| 56 | return null; |
||
| 57 | } |
||
| 58 | |||
| 59 | if (!$value instanceof \DateTime) { |
||
| 60 | throw new InvalidArgumentException('%s is not of expected \DateTime', $this->getName()); |
||
| 61 | } |
||
| 62 | |||
| 63 | return $value->format($this->getOption('format')['read']); |
||
| 64 | } |
||
| 65 | } |
||
| 66 |