1 | <?php |
||
12 | class Version extends Type |
||
13 | { |
||
14 | const VERSION = 'version'; |
||
15 | |||
16 | /** |
||
17 | * Return type name |
||
18 | * |
||
19 | * @return type |
||
20 | */ |
||
21 | public function getName() |
||
25 | |||
26 | /** |
||
27 | * {@inherited} |
||
28 | */ |
||
29 | public function getSQLDeclaration(array $fieldDeclaration, AbstractPlatform $platform) |
||
36 | |||
37 | /** |
||
38 | * {@inherited} |
||
39 | */ |
||
40 | public function convertToDatabaseValue($value, AbstractPlatform $platform) |
||
44 | |||
45 | /** |
||
46 | * {@inherited} |
||
47 | */ |
||
48 | public function convertToPHPValue($value, AbstractPlatform $platform) |
||
52 | } |
||
53 |