Closed dmason30 closed 1 year ago
Caused by https://github.com/laravel/framework/pull/46806
The afterResponse handler was changed from using $this->dispatchNow(...) to $this->dispatchSync(...) in the above PR.
$this->dispatchNow(...)
$this->dispatchSync(...)
Thanks for that, this pushed me in the right direction. There were more issues but I managed to fix them in a separate PR so I'll close this one. 🍺
Caused by https://github.com/laravel/framework/pull/46806
The afterResponse handler was changed from using
$this->dispatchNow(...)
to$this->dispatchSync(...)
in the above PR.