PHP 클래스 Owl\Authenticate\Driver\OwlUserProvider

상속: implements Illuminate\Contracts\Auth\UserProvider
파일 보기 프로젝트 열기: owl/owl

보호된 프로퍼티들

프로퍼티 타입 설명
$userService Owl\Services\UserService

공개 메소드들

메소드 설명
__construct ( UserService $userService ) Create constructor.
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 unique identifer.
retrieveByToken ( mixed $identifier, string $token ) : Illuminate\Contracts\Auth\Authenticatable | null Retrieve a user by unique token and identifier.
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.

보호된 메소드들

메소드 설명
getOwlUser ( mixed $user ) : Owl\Authenticate\Driver\OwlUser | null Get the owl user.

메소드 상세

__construct() 공개 메소드

Create constructor.
public __construct ( UserService $userService )
$userService Owl\Services\UserService

getOwlUser() 보호된 메소드

Get the owl user.
protected getOwlUser ( mixed $user ) : Owl\Authenticate\Driver\OwlUser | null
$user mixed
리턴 Owl\Authenticate\Driver\OwlUser | null

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 unique identifer.
public retrieveById ( mixed $identifier ) : Illuminate\Contracts\Auth\Authenticatable | null
$identifier mixed
리턴 Illuminate\Contracts\Auth\Authenticatable | null

retrieveByToken() 공개 메소드

Retrieve a user by unique token and identifier.
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

프로퍼티 상세

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

protected UserService,Owl\Services $userService
리턴 Owl\Services\UserService