1 | <?php |
||
15 | class TimeType extends DoctrineTimeType implements TypeConversionInterface |
||
16 | { |
||
17 | /** |
||
18 | * @param mixed $value |
||
19 | * @param AbstractPlatform $platform |
||
20 | * @return DateTime|mixed |
||
21 | */ |
||
22 | public function convertToPHPValue($value, AbstractPlatform $platform) |
||
29 | |||
30 | /** |
||
31 | * @return string |
||
32 | */ |
||
33 | public function getName() |
||
37 | |||
38 | /** |
||
39 | * @param string $value |
||
40 | * @return DateTime |
||
41 | */ |
||
42 | public function convertToHydratorValue($value) |
||
58 | } |
||
59 |