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
Did you manage to resolve this issue? I’m currently encountering the same problem that @manunoly mentioned. You mentioned that you were able to use the request() helper. I tried it, but I’m still unable to resolve the issue.
Hello @saeedvaziry nice package, this can be the missing piece that PHP is needing,
if I pass any variable is working fine
AsyncHandler::dispatch(function () use ($user) { logger('test'); });
but if you pass the $request object to AsyncHandler::dispatch fn, I always get a 500 error, it's the expected behave or I'm missing something,
AsyncHandler::dispatch(function () use ($request) { logger('test'); });
The text was updated successfully, but these errors were encountered: