| 1 | <?php |
||
| 23 | class UuidType extends StringType |
||
| 24 | { |
||
| 25 | const NAME = 'uuid'; |
||
| 26 | |||
| 27 | public function getName() |
||
| 31 | |||
| 32 | /** |
||
| 33 | * {@inheritdoc} |
||
| 34 | */ |
||
| 35 | public function convertToPHPValue($value, AbstractPlatform $platform) |
||
| 39 | |||
| 40 | /** |
||
| 41 | * {@inheritdoc} |
||
| 42 | */ |
||
| 43 | public function convertToDatabaseValue($value, AbstractPlatform $platform) |
||
| 47 | } |
||
| 48 |