aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ImportBundle/WallabagImportBundle.php
blob: 98c2f97b4013d34a3ce4bc467affa8c448f3d921 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

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());
    }
}