vendor/sogec/bo-bundle/SogecBOBundle.php line 8

Open in your IDE?
  1. <?php
  2. namespace Sogec\BOBundle;
  3. use Symfony\Component\HttpKernel\Bundle\Bundle;
  4. class SogecBOBundle extends Bundle
  5. {
  6.     public function getContainerExtension()
  7.     {
  8.         if (null === $this->extension)
  9.         {
  10.             $extension $this->createContainerExtension();
  11.             if (null !== $extension)
  12.                 $this->extension $extension;
  13.             else
  14.                 $this->extension false;
  15.         }
  16.         if ($this->extension)
  17.         {
  18.             return $this->extension;
  19.         }
  20.     }
  21. }