Files
wallabag/src/Wallabag/ImportBundle/WallabagImportBundle.php

18 lines
413 B
PHP
Raw Normal View History

2015-10-20 13:58:13 +02:00
<?php
namespace Wallabag\ImportBundle;
use Symfony\Component\DependencyInjection\ContainerBuilder;
2017-07-01 09:52:38 +02:00
use Symfony\Component\HttpKernel\Bundle\Bundle;
2023-12-31 18:21:09 +01:00
use Wallabag\CoreBundle\Import\ImportCompilerPass;
2015-10-20 13:58:13 +02:00
class WallabagImportBundle extends Bundle
{
public function build(ContainerBuilder $container)
{
parent::build($container);
$container->addCompilerPass(new ImportCompilerPass());
}
2015-10-20 13:58:13 +02:00
}