vendor/logist/clickhouse-bundle/src/LogistClickHouseBundle/LogistClickHouseBundle.php line 22

Open in your IDE?
  1. <?php
  2. /*
  3.  *  This file is part of the logist\clickhouse-bundle package.
  4.  *
  5.  *  Copyright 2019 logist.cloud <support@logist.cloud>
  6.  */
  7. namespace LogistClickHouseBundle;
  8. use Symfony\Component\HttpKernel\Bundle\Bundle;
  9. use Symfony\Component\DependencyInjection\ContainerBuilder;
  10. use LogistClickHouseBundle\DependencyInjection\LogistClickhouseManagerPass;
  11. /**
  12.  * LogistClickHouseBundle
  13.  * 
  14.  * @author Grigoriy Kulin <yarboroda@gmail.com>
  15.  */
  16. class LogistClickHouseBundle extends Bundle
  17. {
  18.     /**
  19.      * @param ContainerBuilder $container
  20.      * @return void
  21.      */
  22.     public function build(ContainerBuilder $container)
  23.     {
  24.         $container->addCompilerPass(new LogistClickhouseManagerPass());
  25.     }
  26. }