1 | <?php |
||
10 | class MoneyType extends Type |
||
11 | { |
||
12 | const MONEY = 'money'; |
||
13 | |||
14 | public function getSQLDeclaration(array $fieldDeclaration, AbstractPlatform $platform) |
||
18 | |||
19 | public function convertToPHPValue($value, AbstractPlatform $platform) |
||
23 | |||
24 | public function convertToDatabaseValue($value, AbstractPlatform $platform) |
||
28 | |||
29 | public function getName() |
||
33 | } |
||
34 |