vendor/rawafed/runtime-config/RawafedRuntimeConfigBundle.php line 8

Open in your IDE?
  1. <?php
  2. namespace Rawafed\RuntimeConfigBundle;
  3. use Symfony\Component\HttpKernel\Bundle\Bundle;
  4. use Rawafed\RuntimeConfigBundle\DependencyInjection\RuntimeConfigExtension;
  5. class RawafedRuntimeConfigBundle extends Bundle
  6. {
  7.   public function __construct()
  8.   {
  9.       $this->extension = new RuntimeConfigExtension();
  10.   }
  11.     
  12.   public function boot() {
  13.         //$dashboard = $this->container->get('admin.dashboard_manager');
  14.         //$dashboard->createFromYML(__DIR__.'/Resources/config/dashboard.yml');
  15.     }
  16. }