flightphp / core

An extensible micro-framework for PHP
https://docs.flightphp.com
MIT License
2.6k stars 408 forks source link

Wrong request method response #590

Closed luka97zr closed 1 month ago

luka97zr commented 1 month ago

Is your feature request related to a problem? Please describe. If the request is sent to the existing route but with the wrong method provided, the 404 page is returned by default.

Describe the solution you'd like It would be more helpful if the response pointed out that the method is wrong rather than returning the default 404 page.

Additional context If a GET request is sent to an existing route that accepts the POST method, the 404 page is returned instead of the wrong method response.

n0nag0n commented 1 month ago

How's this? https://github.com/flightphp/core/pull/591

n0nag0n commented 1 month ago

Merged to master. Will be included in next release.