PHP 클래스 MongolidLaravel\MongolidUserProvider

상속: implements Illuminate\Contracts\Auth\UserProvider
파일 보기 프로젝트 열기: leroy-merlin-br/mongolid-laravel 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$hasher Illuminate\Contracts\Hashing\Hasher The hasher implementation.
$model MongolidLaravel\MongoLidModel The MongoLid user model.

공개 메소드들

메소드 설명
__construct ( Illuminate\Contracts\Hashing\Hasher $hasher, MongolidLaravel\MongoLidModel $model ) Create a new database user provider.
retrieveByCredentials ( array $credentials ) : Illuminate\Contracts\Auth\Authenticatable | null Retrieve a user by the given credentials.
retrieveByID ( mixed $identifier ) : Illuminate\Contracts\Auth\Authenticatable | null Retrieve a user by their unique identifier.
retrieveByToken ( mixed $identifier, string $token ) : Illuminate\Contracts\Auth\Authenticatable | null Retrieve a user by by their unique identifier and "remember me" token.
updateRememberToken ( Illuminate\Contracts\Auth\Authenticatable $user, string $token ) Update the "remember me" token for the given user in storage.
validateCredentials ( Illuminate\Contracts\Auth\Authenticatable $user, array $credentials ) : boolean Validate a user against the given credentials.

보호된 메소드들

메소드 설명
createModel ( ) : MongolidLaravel\MongoLidModel Create a new instance of the model.

메소드 상세

__construct() 공개 메소드

Create a new database user provider.
public __construct ( Illuminate\Contracts\Hashing\Hasher $hasher, MongolidLaravel\MongoLidModel $model )
$hasher Illuminate\Contracts\Hashing\Hasher
$model MongolidLaravel\MongoLidModel

createModel() 보호된 메소드

Create a new instance of the model.
protected createModel ( ) : MongolidLaravel\MongoLidModel
리턴 MongolidLaravel\MongoLidModel

retrieveByCredentials() 공개 메소드

Retrieve a user by the given credentials.
public retrieveByCredentials ( array $credentials ) : Illuminate\Contracts\Auth\Authenticatable | null
$credentials array
리턴 Illuminate\Contracts\Auth\Authenticatable | null

retrieveByID() 공개 메소드

Retrieve a user by their unique identifier.
public retrieveByID ( mixed $identifier ) : Illuminate\Contracts\Auth\Authenticatable | null
$identifier mixed
리턴 Illuminate\Contracts\Auth\Authenticatable | null

retrieveByToken() 공개 메소드

Retrieve a user by by their unique identifier and "remember me" token.
public retrieveByToken ( mixed $identifier, string $token ) : Illuminate\Contracts\Auth\Authenticatable | null
$identifier mixed
$token string
리턴 Illuminate\Contracts\Auth\Authenticatable | null

updateRememberToken() 공개 메소드

Update the "remember me" token for the given user in storage.
public updateRememberToken ( Illuminate\Contracts\Auth\Authenticatable $user, string $token )
$user Illuminate\Contracts\Auth\Authenticatable
$token string

validateCredentials() 공개 메소드

Validate a user against the given credentials.
public validateCredentials ( Illuminate\Contracts\Auth\Authenticatable $user, array $credentials ) : boolean
$user Illuminate\Contracts\Auth\Authenticatable
$credentials array
리턴 boolean

프로퍼티 상세

$hasher 보호되어 있는 프로퍼티

The hasher implementation.
protected Hasher,Illuminate\Contracts\Hashing $hasher
리턴 Illuminate\Contracts\Hashing\Hasher

$model 보호되어 있는 프로퍼티

The MongoLid user model.
protected MongoLidModel,MongolidLaravel $model
리턴 MongolidLaravel\MongoLidModel