vendor/logist/supervisord-bundle/src/LogistSupervisordBundle/LogistSupervisordBundle.php line 22

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