vendor/wa72/jsonrpc-bundle/Wa72/JsonRpcBundle/Wa72JsonRpcBundle.php line 9

Open in your IDE?
  1. <?php
  2. namespace Wa72\JsonRpcBundle;
  3. use Symfony\Component\DependencyInjection\ContainerBuilder;
  4. use Symfony\Component\HttpKernel\Bundle\Bundle;
  5. use Wa72\JsonRpcBundle\DependencyInjection\Compiler\JsonRpcExposablePass;
  6. class Wa72JsonRpcBundle extends Bundle
  7. {
  8.     public function build(ContainerBuilder $container)
  9.     {
  10.         parent::build($container);
  11.         $container->addCompilerPass(new JsonRpcExposablePass());
  12.     }
  13. }