diff --git a/src/Framework/Command/Router/ListCommand.php b/src/Framework/Command/Router/ListCommand.php index 60c62dcc4..966dafeb4 100644 --- a/src/Framework/Command/Router/ListCommand.php +++ b/src/Framework/Command/Router/ListCommand.php @@ -72,6 +72,8 @@ private function getVerbs(RouteInterface $route): string foreach ($route->getVerbs() as $verb) { $result[] = match (\strtolower($verb)) { 'get' => 'GET', + 'head' => 'HEAD', + 'options' => 'OPTIONS', 'post' => 'POST', 'patch' => 'PATCH', 'put' => 'PUT',