aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ImportBundle/WallabagImportBundle.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Wallabag/ImportBundle/WallabagImportBundle.php')
-rw-r--r--src/Wallabag/ImportBundle/WallabagImportBundle.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Wallabag/ImportBundle/WallabagImportBundle.php b/src/Wallabag/ImportBundle/WallabagImportBundle.php
index d00f2fe9..a5ddc1b4 100644
--- a/src/Wallabag/ImportBundle/WallabagImportBundle.php
+++ b/src/Wallabag/ImportBundle/WallabagImportBundle.php
@@ -3,7 +3,15 @@
3namespace Wallabag\ImportBundle; 3namespace Wallabag\ImportBundle;
4 4
5use Symfony\Component\HttpKernel\Bundle\Bundle; 5use Symfony\Component\HttpKernel\Bundle\Bundle;
6use Symfony\Component\DependencyInjection\ContainerBuilder;
7use Wallabag\ImportBundle\Import\ImportCompilerPass;
6 8
7class WallabagImportBundle extends Bundle 9class WallabagImportBundle extends Bundle
8{ 10{
11 public function build(ContainerBuilder $container)
12 {
13 parent::build($container);
14
15 $container->addCompilerPass(new ImportCompilerPass());
16 }
9} 17}