コード例 #1
0
ファイル: Router.php プロジェクト: Haringat/lighter
 public static function static($path, $resource, $mime, $forceDownload)
 {
     self::register(Route::static($path, $resource, $mime, $forceDownload));
 }
コード例 #2
0
ファイル: Route.php プロジェクト: Haringat/lighter
 public static function static($path, $resource, $mime, $forceDownload)
 {
     $route = new Route($path, null, array("GET"));
     $route->setStatic($resource, $mime, $forceDownload);
     return $route;
 }