| 1 | <?php |
||
| 9 | abstract class SetType extends Type { |
||
| 10 | |||
| 11 | /** |
||
| 12 | * @return string[] |
||
| 13 | */ |
||
| 14 | abstract protected function getValue(); |
||
| 15 | |||
| 16 | |||
| 17 | /** |
||
| 18 | * {@inheritdoc} |
||
| 19 | */ |
||
| 20 | public function convertToDatabaseValue($value, AbstractPlatform $platform) { |
||
| 44 | |||
| 45 | /** |
||
| 46 | * {@inheritdoc} |
||
| 47 | */ |
||
| 48 | public function convertToPHPValue($value, AbstractPlatform $platform) { |
||
| 57 | |||
| 58 | /** |
||
| 59 | * {@inheritdoc} |
||
| 60 | */ |
||
| 61 | public function getSQLDeclaration(array $fieldDeclaration, AbstractPlatform $platform) { |
||
| 69 | |||
| 70 | /** |
||
| 71 | * {@inheritdoc} |
||
| 72 | */ |
||
| 73 | public function requiresSQLCommentHint(AbstractPlatform $platform) { |
||
| 76 | } |
||
| 77 |