-
Notifications
You must be signed in to change notification settings - Fork 0
Home
mbhuva edited this page Nov 13, 2014
·
2 revisions
getAuthService()->hasIdentity();
}
/**
* Proxy convenience method
*
* @return mixed
*/
public function getIdentity()
{
return $this->getAuthService()->getIdentity();
}
/**
* Get authAdapter.
*
* @return ZfcUserAuthentication
*/
public function getAuthAdapter()
{
return $this->authAdapter;
}
/**
* Set authAdapter.
*
* @param authAdapter $authAdapter
*/
public function setAuthAdapter(AuthAdapter $authAdapter)
{
$this->authAdapter = $authAdapter;
return $this;
}
/**
* Get authService.
*
* @return AuthenticationService
*/
public function getAuthService()
{
return $this->authService;
}
/**
* Set authService.
*
* @param AuthenticationService $authService
*/
public function setAuthService(AuthenticationService $authService)
{
$this->authService = $authService;
return $this;
}
}