Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | final class OdiseoBlogBundle extends AbstractResourceBundle |
||
15 | { |
||
16 | protected $mappingFormat = ResourceBundleInterface::MAPPING_YAML; |
||
17 | |||
18 | /** |
||
19 | * {@inheritdoc} |
||
20 | */ |
||
21 | public function getSupportedDrivers(): array |
||
22 | { |
||
23 | return [ |
||
24 | SyliusResourceBundle::DRIVER_DOCTRINE_ORM, |
||
25 | ]; |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * {@inheritdoc} |
||
30 | */ |
||
31 | protected function getModelNamespace(): ?string |
||
34 | } |
||
35 | } |
||
36 |