vendor/ksante/ksante_bundlecore/src/KsanteCoreBundle.php line 10

Open in your IDE?
  1. <?php
  2. namespace Ksante\CoreBundle;
  3. use Doctrine\Bundle\DoctrineBundle\DependencyInjection\Compiler\DoctrineOrmMappingsPass;
  4. use Ksante\CoreBundle\DependencyInjection\KsanteCoreExtension;
  5. use Symfony\Component\HttpKernel\Bundle\Bundle;
  6. use Symfony\Component\DependencyInjection\ContainerBuilder;
  7. class KsanteCoreBundle extends Bundle
  8. {
  9.     /**
  10.      * Overridden to allow for the custom extension alias.
  11.      */
  12.     public function getContainerExtension()
  13.     {
  14.         if (null === $this->extension) {
  15.             $this->extension = new KsanteCoreExtension();
  16.         }
  17.         return $this->extension;
  18.     }
  19. }