コード例 #1
0
ファイル: Kernel.class.php プロジェクト: pthreat/apf-dev
 public static function boot($dispatch = TRUE)
 {
     parent::boot();
     self::$dispatcher = new \apf\web\core\Dispatcher();
     if ($dispatch) {
         return self::$dispatcher->dispatch();
     }
 }