Total Complexity | 3 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | class LTreeExtension extends AbstractExtension |
||
15 | { |
||
16 | public const NAME = LTreeType::TYPE_NAME; |
||
17 | |||
18 | 52 | public static function getMixins(): array |
|
19 | { |
||
20 | 52 | return [ |
|
21 | 52 | LTreeBlueprint::class => Blueprint::class, |
|
22 | 52 | LTreeSchemaGrammar::class => PostgresGrammar::class, |
|
23 | 52 | ]; |
|
24 | } |
||
25 | |||
26 | 52 | public static function getName(): string |
|
29 | } |
||
30 | |||
31 | 52 | public static function getTypes(): array |
|
38 |