There was an error that corrupted a bunch of users' sessions and I'm wondering if there's a way to remove/reset all sessions without making them all go through our logout script.
I'd like something that does what this does
$auth = $this->getServiceLocator()->get('Zend\Authentication\AuthenticationService');
if($auth->hasIdentity()) {
$auth->clearIdentity();
}
but for every existing user session.