vendor/sidus/doctrine-debug-bundle/SidusDoctrineDebugBundle.php line 24

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Sidus/DoctrineDebugBundle package.
  4.  *
  5.  * Copyright (c) 2015-2018 Vincent Chalnot
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Sidus\DoctrineDebugBundle;
  11. use Sidus\DoctrineDebugBundle\DependencyInjection\Compiler\DbDataCollectorCompilerPass;
  12. use Symfony\Component\DependencyInjection\ContainerBuilder;
  13. use Symfony\Component\HttpKernel\Bundle\Bundle;
  14. /**
  15.  * Class SidusDoctrineDebugBundle
  16.  *
  17.  * @package Sidus\DoctrineDebugBundle
  18.  *
  19.  * @author Vincent Chalnot <[email protected]>
  20.  */
  21. class SidusDoctrineDebugBundle extends Bundle
  22. {
  23.     /**
  24.      * @param ContainerBuilder $container
  25.      */
  26.     public function build(ContainerBuilder $container)
  27.     {
  28.         $container->addCompilerPass(new DbDataCollectorCompilerPass());
  29.     }
  30. }