vendor/kunstmaan/media-bundle/KunstmaanMediaBundle.php line 13

Open in your IDE?
  1. <?php
  2. namespace Kunstmaan\MediaBundle;
  3. use Kunstmaan\MediaBundle\DependencyInjection\Compiler\DeprecateClassParametersPass;
  4. use Kunstmaan\MediaBundle\DependencyInjection\Compiler\MediaHandlerCompilerPass;
  5. use Symfony\Component\DependencyInjection\ContainerBuilder;
  6. use Symfony\Component\HttpKernel\Bundle\Bundle;
  7. /**
  8.  * KunstmaanMediaBundle
  9.  */
  10. class KunstmaanMediaBundle extends Bundle
  11. {
  12.     /**
  13.      * @param ContainerBuilder $container A ContainerBuilder instance
  14.      */
  15.     public function build(ContainerBuilder $container)
  16.     {
  17.         parent::build($container);
  18.         $container->addCompilerPass(new MediaHandlerCompilerPass());
  19.         $container->addCompilerPass(new DeprecateClassParametersPass());
  20.     }
  21. }