Skip to content

Commit 0cf43b6

Browse files
Fix route matching for different HTTP methods
1 parent b897fa5 commit 0cf43b6

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

src/Router.php

+10-4
Original file line numberDiff line numberDiff line change
@@ -70,20 +70,26 @@ public function matchFromPath(string $path, string $method): Route
7070
/**
7171
* @var Route $route
7272
*/
73+
$routeMatchedButMethodNotAllowed = false;
7374
foreach ($this->routes as $route) {
7475
if ($route->match($path) === false) {
7576
continue;
7677
}
7778

7879
if (!in_array($method, $route->getMethods())) {
79-
throw new MethodNotAllowed(
80-
'Method Not Allowed : ' . $method,
81-
self::METHOD_NOT_ALLOWED
82-
);
80+
$routeMatchedButMethodNotAllowed = true;
81+
continue;
8382
}
8483
return $route;
8584
}
8685

86+
if ($routeMatchedButMethodNotAllowed) {
87+
throw new MethodNotAllowed(
88+
'Method Not Allowed : ' . $method,
89+
self::METHOD_NOT_ALLOWED
90+
);
91+
}
92+
8793
throw new RouteNotFound(
8894
'No route found for ' . $path,
8995
self::NO_ROUTE

0 commit comments

Comments
 (0)