auth = new AuthenticationService(); $this->auth->setStorage(new SessionStorage($config->session_namespace)); } public function getInstance() { return $this->auth; } public function clearIndentity() { return $this->auth->clearIdentity(); } public function getIdentity($field) { return $this->auth->getIdentity()->$field; } }