Exemplo n.º 1
0
 public function bootstrap(App $app)
 {
     $conf = new Repository(new FileLoader($app->configPath()), "");
     $app->instance("config", $conf);
     date_default_timezone_set($conf->get("app.timezone"));
     mb_internal_encoding('UTF-8');
 }
Exemplo n.º 2
0
 public function bootstrap(App $app)
 {
     $emitter = new EventEmitter();
     $app->instance('events', $emitter);
 }