vendor/bca/apim/src/BCAAPIMBundle.php line 23

Open in your IDE?
  1. <?php
  2. namespace BCA\APIM;
  3. use BCA\APIM\DependencyInjection\BCAAPIMExtension;
  4. use Symfony\Component\HttpKernel\Bundle\Bundle;
  5. /**
  6.  * Entry point for BCAAPIMBundle
  7.  *
  8.  * @package BCA\APIM
  9.  */
  10. class BCAAPIMBundle extends Bundle
  11. {
  12.     /**
  13.      * This method removes the security check on bundle alias
  14.      *
  15.      * @return mixed
  16.      */
  17.     public function getContainerExtension()
  18.     {
  19.         if (null === $this->extension) {
  20.             $this->extension = new BCAAPIMExtension();
  21.         }
  22.         return $this->extension;
  23.     }
  24. }