Archived
1
0
Fork 0

app/library/Services.php: Don't need to call setEventsManager() on auth service anymore.

This commit is contained in:
Henrik Hautakoski 2022-07-26 20:13:23 +02:00
parent 8029872b13
commit abcbf8759e

View file

@ -346,9 +346,7 @@ class Services extends DiDefault
protected function _initAuth()
{
$auth = new Auth($this->get('config'));
$auth->setEventsManager($this->get('eventsManager'));
return $auth;
return new Auth($this->get('config'));
}
protected function _initAcl()