diff --git a/Router.php b/Router.php index e78800c7..2a8051e9 100644 --- a/Router.php +++ b/Router.php @@ -132,18 +132,6 @@ public function __construct(Dispatcher $events, Container $container = null) $this->container = $container ?: new Container; } - /** - * Register a new HEAD route with the router. - * - * @param string $uri - * @param \Closure|array|string|callable|null $action - * @return \Illuminate\Routing\Route - */ - public function head($uri, $action = null) - { - return $this->addRoute('HEAD', $uri, $action); - } - /** * Register a new GET route with the router. *