Prepare for moving into monorepo

This commit is contained in:
2021-03-18 12:46:39 +01:00
parent e46463d119
commit 3c3cf987d7
46 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<?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());
}
}