コード例 #1
0
ファイル: App.php プロジェクト: iliubang/Linger-v2.0
 /**
  * start application.
  */
 public function run()
 {
     foreach (glob(APP_DIR . 'controllers/*') as $file) {
         include $file;
     }
     Router::dispatch();
 }