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
I've tried to use Zend Events to catch the final response before it is passed to output. But I always only got the event fired before rendering and with empty response.
I tried like this:
`
$eventManager->attach(ViewEvent::EVENT_RESPONSE, function($event) { ... })
I've tried to use Zend Events to catch the final response before it is passed to output. But I always only got the event fired before rendering and with empty response.
I tried like this:
`
$eventManager->attach(ViewEvent::EVENT_RESPONSE, function($event) { ... })
$sharedEvents->attach('Zend\View\View', ViewEvent::EVENT_RESPONSE, function($event) { ... })
$eventManager->attach(MvcEvent::EVENT_FINISH, function($event) { ... })
`
Always only firing before and not after the final rendering.
The text was updated successfully, but these errors were encountered: