2015-01-23 16:28:37 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Wallabag\CoreBundle;
|
|
|
|
|
|
2024-01-01 17:05:20 +01:00
|
|
|
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
2015-01-23 16:28:37 +01:00
|
|
|
use Symfony\Component\HttpKernel\Bundle\Bundle;
|
2024-01-01 17:05:20 +01:00
|
|
|
use Wallabag\CoreBundle\Import\ImportCompilerPass;
|
2015-01-23 16:28:37 +01:00
|
|
|
|
|
|
|
|
class WallabagCoreBundle extends Bundle
|
|
|
|
|
{
|
2024-01-01 17:05:20 +01:00
|
|
|
public function build(ContainerBuilder $container)
|
|
|
|
|
{
|
|
|
|
|
parent::build($container);
|
|
|
|
|
|
|
|
|
|
$container->addCompilerPass(new ImportCompilerPass());
|
|
|
|
|
}
|
2015-01-23 16:28:37 +01:00
|
|
|
}
|