In Exceptions/Handler.php i added some logic to send an email with every exception from my flow ( i added this to report method ).
In my flow i have severals forms and from time to time i get an email with an error in file RouteCollection, line 255: MethodNotAllowedHttpException;
The url is this: mydomain.com/preorder/{someId} and the route is POST.
I get several emails with an error in file RouteCollection, line 255 on this route, but i don't have any request details or session details ( i get them in exception handler and send them in email ).
I reproduced this error trying to get to that route via get ( writing the url directly into the browser ).
My question is...there's any chance i could get this error with no request and session details in any other way?
Beacuse, the user should have several informations stored in session in this point.
Beside that, i get several errors from someone who's trying to access mydomain.com/wp-admin or /wp-login and stuff like this, so i'm thinking maybe it's a BOT that's trying several routes.
What do you think?