1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-09-15 18:57:05 +00:00

Register ImportCompilerPass in AppKernel

This commit is contained in:
Yassine Guedidi 2024-02-19 00:53:59 +01:00
parent 24da70e338
commit 6879bb2435
2 changed files with 6 additions and 8 deletions

View file

@ -2,16 +2,8 @@
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());
}
}