示例#1
0
文件: App.php 项目: vitordm/VTRMVC
 /**
  * Set Debug of application
  */
 private function setDebug()
 {
     $ambience = Conf::get("App.online", false);
     $debug = !$ambience;
     if ($this->configuration->offsetExists("debug")) {
         $debug = $this->configuration->debug;
     }
     Conf::set("App.debug", $debug);
 }