You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<?php
namespace Zitec\RuleEngineBundle;
use Symfony\Component\DependencyInjection\ContainerBuilder;use Symfony\Component\HttpKernel\Bundle\Bundle;use Zitec\RuleEngineBundle\DependencyInjection\Compiler\AutocompletePass;use Zitec\RuleEngineBundle\DependencyInjection\Compiler\ConditionsManagerPass;use Zitec\RuleEngineBundle\DependencyInjection\Compiler\ExpressionProviderPass;
/** * Class RuleEngineBundle */class ZitecRuleEngineBundle extends Bundle{ /** * @param ContainerBuilder $container */ public function build(ContainerBuilder $container) { $container->addCompilerPass(new AutocompletePass()); $container->addCompilerPass(new ExpressionProviderPass()); $container->addCompilerPass(new ConditionsManagerPass()); parent::build($container); }}
|