vendor/codeages/plugin-bundle/FrameworkBundle.php line 7

Open in your IDE?
  1. <?php
  2. namespace Codeages\PluginBundle;
  3. use Symfony\Bundle\FrameworkBundle\FrameworkBundle as BaseFrameworkBundle;
  4. class FrameworkBundle extends BaseFrameworkBundle
  5. {
  6.     public function boot()
  7.     {
  8.     }
  9.     public function getNamespace()
  10.     {
  11.         return 'Symfony\Bundle\FrameworkBundle';
  12.     }
  13.     public function getPath()
  14.     {
  15.         if (null === $this->path) {
  16.             $reflected = new \ReflectionClass('Symfony\Bundle\FrameworkBundle\FrameworkBundle');
  17.             $this->path dirname($reflected->getFileName());
  18.         }
  19.         return $this->path;
  20.     }
  21.     protected function getContainerExtensionClass()
  22.     {
  23.         return  __NAMESPACE__.'\\DependencyInjection\\FrameworkExtension';
  24.     }
  25. }