Remove ImportBundle

This commit is contained in:
Yassine Guedidi
2024-01-01 17:05:20 +01:00
parent 6552c84eec
commit 2c65169127
5 changed files with 8 additions and 52 deletions

View File

@ -2,8 +2,16 @@
namespace Wallabag\CoreBundle;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Bundle\Bundle;
use Wallabag\CoreBundle\Import\ImportCompilerPass;
class WallabagCoreBundle extends Bundle
{
public function build(ContainerBuilder $container)
{
parent::build($container);
$container->addCompilerPass(new ImportCompilerPass());
}
}