]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - src/Wallabag/ImportBundle/WallabagImportBundle.php
Add a real configuration for CS-Fixer
[github/wallabag/wallabag.git] / src / Wallabag / ImportBundle / WallabagImportBundle.php
index d00f2fe9fcb171534b92bd237acd0868417b6be8..98c2f97b4013d34a3ce4bc467affa8c448f3d921 100644 (file)
@@ -2,8 +2,16 @@
 
 namespace Wallabag\ImportBundle;
 
+use Symfony\Component\DependencyInjection\ContainerBuilder;
 use Symfony\Component\HttpKernel\Bundle\Bundle;
+use Wallabag\ImportBundle\Import\ImportCompilerPass;
 
 class WallabagImportBundle extends Bundle
 {
+    public function build(ContainerBuilder $container)
+    {
+        parent::build($container);
+
+        $container->addCompilerPass(new ImportCompilerPass());
+    }
 }