You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add fallback routes matching *any* method
These are strictly fallback handlers and only match after all other
routes have been tried. The target use case are path-specific 404
pages or similar.
Fix issue nikic#50
If the static route doesn't exist for the given method, try matching
against dynamic ones as well. Allowed methods are now collected from
both static and dynamic routes.
This changes the route data format, so cache is no longer valid --
maybe include a version identifier in the cache file?