| 1 | <?php |
||
| 12 | class DateType implements TypeInterface |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * {@inheritDoc} |
||
| 16 | */ |
||
| 17 | public function convertToModlrValue($value) |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Creates a DateTime object based on a value. |
||
| 27 | * |
||
| 28 | * @param mixed $value |
||
| 29 | * @return DateTime |
||
| 30 | */ |
||
| 31 | private function createDateTime($value) |
||
| 49 | } |
||
| 50 |