initial commit

This commit is contained in:
2019-05-07 21:32:41 +02:00
commit f6b9517e50
46 changed files with 2479 additions and 0 deletions

16
ChillAMLIBudgetBundle.php Normal file
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());
}
}