1 | <?php |
||
18 | class JsonObjectType extends JsonType |
||
19 | { |
||
20 | const JSON_OBJECT = 'json_object'; |
||
21 | |||
22 | /** |
||
23 | * @inheritDoc |
||
24 | */ |
||
25 | 1 | public function getSQLDeclaration(array $fieldDeclaration, AbstractPlatform $platform) |
|
29 | |||
30 | /** |
||
31 | * @inheritDoc |
||
32 | */ |
||
33 | 3 | public function convertToDatabaseValue($value, AbstractPlatform $platform) |
|
44 | |||
45 | /** |
||
46 | * @inheritDoc |
||
47 | * |
||
48 | * @throws MissingClassParameterException |
||
49 | */ |
||
50 | 3 | public function convertToPHPValue($value, AbstractPlatform $platform) |
|
64 | |||
65 | /** |
||
66 | * {@inheritdoc} |
||
67 | */ |
||
68 | 1 | public function getName() |
|
72 | |||
73 | /** |
||
74 | * @inheritDoc |
||
75 | */ |
||
76 | 1 | public function requiresSQLCommentHint(AbstractPlatform $platform) |
|
80 | } |