You've already forked php-flasher
mirror of
https://github.com/php-flasher/php-flasher.git
synced 2026-04-05 12:32:55 +01:00
23 lines
690 B
PHP
23 lines
690 B
PHP
<?php
|
|
|
|
namespace Flasher\Symfony;
|
|
|
|
use Flasher\Symfony\DependencyInjection\Compiler\FilterCompilerPass;
|
|
use Flasher\Symfony\DependencyInjection\Compiler\ProducerCompilerPass;
|
|
use Flasher\Symfony\DependencyInjection\Compiler\RendererCompilerPass;
|
|
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
|
use Symfony\Component\HttpKernel\Bundle\Bundle;
|
|
|
|
class NotifyBundle extends Bundle
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function build(ContainerBuilder $container)
|
|
{
|
|
$container->addCompilerPass(new ProducerCompilerPass());
|
|
$container->addCompilerPass(new RendererCompilerPass());
|
|
$container->addCompilerPass(new FilterCompilerPass());
|
|
}
|
|
}
|