These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
1 | <?php |
||
2 | |||
3 | namespace Neirda\Bundle\LiipThemeProvider; |
||
4 | |||
5 | use Neirda\Bundle\LiipThemeProvider\DependencyInjection\CompilerPass\OverrideServicesCompilerPass; |
||
6 | use Neirda\Bundle\LiipThemeProvider\DependencyInjection\CompilerPass\ThemeProviderCompilerPass; |
||
7 | use Symfony\Component\DependencyInjection\ContainerBuilder; |
||
8 | use Symfony\Component\HttpKernel\Bundle\Bundle; |
||
9 | |||
10 | class LiipThemeProviderBundle extends Bundle |
||
11 | { |
||
12 | /** |
||
13 | * {@inheritdoc} |
||
14 | */ |
||
15 | public function build(ContainerBuilder $container) |
||
16 | { |
||
17 | $container->addCompilerPass(new ThemeProviderCompilerPass()); |
||
18 | $container->addCompilerPass(new OverrideServicesCompilerPass()); |
||
19 | } |
||
20 | } |
||
0 ignored issues
–
show
|
|||
21 |
This check marks files that end in a newline character, i.e. an empy line.