File tree 1 file changed +10
-4
lines changed
1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -70,20 +70,26 @@ public function matchFromPath(string $path, string $method): Route
70
70
/**
71
71
* @var Route $route
72
72
*/
73
+ $ routeMatchedButMethodNotAllowed = false ;
73
74
foreach ($ this ->routes as $ route ) {
74
75
if ($ route ->match ($ path ) === false ) {
75
76
continue ;
76
77
}
77
78
78
79
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 ;
83
82
}
84
83
return $ route ;
85
84
}
86
85
86
+ if ($ routeMatchedButMethodNotAllowed ) {
87
+ throw new MethodNotAllowed (
88
+ 'Method Not Allowed : ' . $ method ,
89
+ self ::METHOD_NOT_ALLOWED
90
+ );
91
+ }
92
+
87
93
throw new RouteNotFound (
88
94
'No route found for ' . $ path ,
89
95
self ::NO_ROUTE
You can’t perform that action at this time.
0 commit comments