| Total Complexity | 2 |
| Total Lines | 12 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class MultiPoint extends Type |
||
| 10 | { |
||
| 11 | const MULTIPOINT = 'multipoint'; |
||
| 12 | |||
| 13 | 24 | public function getSQLDeclaration(array $fieldDeclaration, AbstractPlatform $platform) |
|
| 14 | { |
||
| 15 | 24 | return \DB::connection()->getSchemaGrammar()->typeMultipoint(new Fluent); |
|
| 16 | } |
||
| 17 | |||
| 18 | 24 | public function getName() |
|
| 21 | } |
||
| 22 | } |
||
| 23 |