vendor/hello-jonzz/symfony-storage/StorageBundle/StorageBundle.php line 9

Open in your IDE?
  1. <?php
  2. namespace Bluesquare\StorageBundle;
  3. use Bluesquare\StorageBundle\DependencyInjection\StorageExtension;
  4. use Symfony\Component\DependencyInjection\ContainerBuilder;
  5. use Symfony\Component\HttpKernel\Bundle\Bundle;
  6. class StorageBundle extends Bundle
  7. {
  8.     public function build(ContainerBuilder $container)
  9.     {
  10.         parent::build($container);
  11.     }
  12.     public function getContainerExtension()
  13.     {
  14.         if (null === $this->extension)
  15.             $this->extension = new StorageExtension();
  16.         return $this->extension;
  17.     }
  18. }