Beispiel #1
0
 /**
  * @param Application $app
  */
 public function bootstrap(Application $app)
 {
     foreach ($this->getConfigFiles($app) as $key => $path) {
         $this->config->set($key, require $path);
     }
     $app->setEnvironment($this->config->get('app.env', 'production'));
     date_default_timezone_set($this->config->get('app.timezone', 'UTC'));
     mb_internal_encoding('UTF-8');
 }