vendor/league/flysystem-bundle/src/FlysystemBundle.php line 23

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the flysystem-bundle project.
  4.  *
  5.  * (c) Titouan Galopin <galopintitouan@gmail.com>
  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 League\FlysystemBundle;
  11. use League\FlysystemBundle\DependencyInjection\Compiler\LazyFactoryPass;
  12. use Symfony\Component\DependencyInjection\ContainerBuilder;
  13. use Symfony\Component\HttpKernel\Bundle\Bundle;
  14. /**
  15.  * @author Titouan Galopin <galopintitouan@gmail.com>
  16.  *
  17.  * @final
  18.  */
  19. class FlysystemBundle extends Bundle
  20. {
  21.     /**
  22.      * {@inheritdoc}
  23.      */
  24.     public function build(ContainerBuilder $container)
  25.     {
  26.         parent::build($container);
  27.         $container->addCompilerPass(new LazyFactoryPass());
  28.     }
  29. }