Exemplo n.º 1
0
 /**
  * Register a new route with the given verbs.
  *
  * @param  array|string           $methods
  * @param  string                 $uri
  * @param  \Closure|array|string  $action
  *
  * @return \Illuminate\Routing\Route|void
  */
 public function match($methods, $uri, $action)
 {
     return $this->router->match($methods, $uri, $action);
 }