for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* ZohoSubscriptionBundle
*
* @author Tristan Bessoussa <[email protected]>
*/
namespace StoreFactory\ZohoSubscriptionBundle;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Bundle\Bundle;
use StoreFactory\ZohoSubscriptionBundle\CompilerPass\DynamicServiceCacheCompilerPass;
class ZohoSubscriptionBundle extends Bundle
{
* {@inheritdoc}
public function build(ContainerBuilder $container)
parent::build($container);
$container->addCompilerPass(new DynamicServiceCacheCompilerPass());
}