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.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/Wallabag/ImportBundle/WallabagImportBundle.php b/src/Wallabag/ImportBundle/WallabagImportBundle.php
new file mode 100644
index 00000000..a5ddc1b4
--- /dev/null
+++ b/src/Wallabag/ImportBundle/WallabagImportBundle.php
@@ -0,0 +1,17 @@
1<?php
2
3namespace Wallabag\ImportBundle;
4
5use Symfony\Component\HttpKernel\Bundle\Bundle;
6use Symfony\Component\DependencyInjection\ContainerBuilder;
7use Wallabag\ImportBundle\Import\ImportCompilerPass;
8
9class WallabagImportBundle extends Bundle
10{
11 public function build(ContainerBuilder $container)
12 {
13 parent::build($container);
14
15 $container->addCompilerPass(new ImportCompilerPass());
16 }
17}