mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
17 lines
437 B
PHP
17 lines
437 B
PHP
<?php
|
|
|
|
namespace Chill\AMLI\BudgetBundle;
|
|
|
|
use Symfony\Component\HttpKernel\Bundle\Bundle;
|
|
use Chill\AMLI\BudgetBundle\DependencyInjection\Compiler\CalculatorCompilerPass;
|
|
|
|
class ChillAMLIBudgetBundle extends Bundle
|
|
{
|
|
public function build(\Symfony\Component\DependencyInjection\ContainerBuilder $container)
|
|
{
|
|
parent::build($container);
|
|
|
|
$container->addCompilerPass(new CalculatorCompilerPass());
|
|
}
|
|
}
|