コード例 #1
0
ファイル: Dispatcher.php プロジェクト: tritumRz/rest
 /**
  * Register the callback for the given HTTP method(s)
  *
  * @param string]string[] $method
  * @param \Closure $callback
  * @return $this
  */
 public function registerHttpMethod($methods, \Closure $callback)
 {
     $this->app->method($methods, $callback);
     return $this;
 }