wallabag/src/Wallabag/ImportBundle/WallabagImportBundle.php

18 lines
415 B
PHP
Raw Normal View History

2015-10-20 11:58:13 +00:00
<?php
namespace Wallabag\ImportBundle;
use Symfony\Component\HttpKernel\Bundle\Bundle;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Wallabag\ImportBundle\Import\ImportCompilerPass;
2015-10-20 11:58:13 +00:00
class WallabagImportBundle extends Bundle
{
public function build(ContainerBuilder $container)
{
parent::build($container);
$container->addCompilerPass(new ImportCompilerPass());
}
2015-10-20 11:58:13 +00:00
}