Total Complexity | 2 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | class MultiPoint extends Type |
||
16 | { |
||
17 | public const MULTIPOINT = 'multipoint'; |
||
18 | |||
19 | /** |
||
20 | * @inheritDoc |
||
21 | */ |
||
22 | 24 | public function getSQLDeclaration(array $fieldDeclaration, AbstractPlatform $platform) |
|
23 | { |
||
24 | 24 | return GrammarFactory::make($platform->getName())->typeMultipoint(new Fluent); |
|
25 | } |
||
26 | |||
27 | /** |
||
28 | * @inheritDoc |
||
29 | */ |
||
30 | 24 | public function getName() |
|
33 | } |
||
34 | } |
||
35 |