<?php
namespace Rawafed\RuntimeConfigBundle;
use Symfony\Component\HttpKernel\Bundle\Bundle;
use Rawafed\RuntimeConfigBundle\DependencyInjection\RuntimeConfigExtension;
class RawafedRuntimeConfigBundle extends Bundle
{
public function __construct()
{
$this->extension = new RuntimeConfigExtension();
}
public function boot() {
//$dashboard = $this->container->get('admin.dashboard_manager');
//$dashboard->createFromYML(__DIR__.'/Resources/config/dashboard.yml');
}
}