Class AbstractAdapter

Summary

Fully Qualified Name: Zend\Authentication\Adapter\AbstractAdapter
Implements: ValidatableAdapterInterface

Description

Methods

Name Description Defined By
getCredential() Returns the credential of the account being authenticated, or NULL if none is set. AbstractAdapter
getIdentity() Returns the identity of the account being authenticated, or NULL if none is set. AbstractAdapter
setCredential() Sets the credential for binding AbstractAdapter
setIdentity() Sets the identity for binding AbstractAdapter

Method Details

getCredential()

Returns the credential of the account being authenticated, or NULL if none is set.

Returns: mixed

getIdentity()

Returns the identity of the account being authenticated, or NULL if none is set.

Returns: mixed

setCredential()

Sets the credential for binding

Parameter Name Type Description
$credential mixed

Returns: self Provides a fluent interface

setIdentity()

Sets the identity for binding

Parameter Name Type Description
$identity mixed

Returns: self Provides a fluent interface

Top