PHP Класс Atrauzzi\LaravelDoctrine\DoctrineAuthenticator

Наследование: implements Illuminate\Contracts\Auth\UserProvider
Показать файл Открыть проект

Защищенные свойства (Protected)

Свойство Тип Описание
$userModel

Открытые методы

Метод Описание
__construct ( $userModel )
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 ) : void 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.

Описание методов

__construct() публичный метод

public __construct ( $userModel )

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 ) : void
$user Illuminate\Contracts\Auth\Authenticatable
$token string
Результат void

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

Описание свойств

$userModel защищенное свойство

protected $userModel