1 | <?php |
||
23 | final class UuidBinaryType extends StringType |
||
24 | { |
||
25 | const NAME = 'uuid_binary'; |
||
26 | |||
27 | /** |
||
28 | * {@inheritdoc} |
||
29 | */ |
||
30 | public function getName() |
||
34 | |||
35 | /** |
||
36 | * {@inheritdoc} |
||
37 | */ |
||
38 | public function convertToPHPValue($value, AbstractPlatform $platform) |
||
42 | |||
43 | /** |
||
44 | * {@inheritdoc} |
||
45 | */ |
||
46 | public function convertToDatabaseValue($value, AbstractPlatform $platform) |
||
50 | } |
||
51 |