Total Complexity | 4 |
Total Lines | 44 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
17 | class FacadeIdeHelper extends AbstractBundle |
||
18 | { |
||
19 | /** |
||
20 | * Boot the bundle. |
||
21 | * |
||
22 | * This method is called when the bundle is booted. |
||
23 | */ |
||
24 | public function boot(): void |
||
25 | { |
||
26 | parent::boot(); |
||
27 | } |
||
28 | |||
29 | /** |
||
30 | * Get the path of the bundle. |
||
31 | * |
||
32 | * @return string The path of the bundle. |
||
33 | */ |
||
34 | public function getPath(): string |
||
37 | } |
||
38 | |||
39 | /** |
||
40 | * Get the namespace of the bundle. |
||
41 | * |
||
42 | * @return string The namespace of the bundle. |
||
43 | */ |
||
44 | public function getNamespace(): string |
||
47 | } |
||
48 | |||
49 | /** |
||
50 | * Load the extension configuration. |
||
51 | * |
||
52 | * This method loads the extension configuration from the specified YAML file. |
||
53 | * |
||
54 | * @param array $config The configuration array. |
||
55 | * @param ContainerConfigurator $container The container configurator. |
||
56 | * @param ContainerBuilder $builder The container builder. |
||
57 | */ |
||
58 | public function loadExtension(array $config, ContainerConfigurator $container, ContainerBuilder $builder): void |
||
61 | } |
||
62 | } |
||
63 |