PHP 클래스 Owl\Repositories\Eloquent\Models\User

상속: extends Illuminate\Database\Eloquent\Model
파일 보기 프로젝트 열기: owl/owl 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$fillable
$hidden array The attributes excluded from the model's JSON form.
$table string The database table used by the model.

공개 메소드들

메소드 설명
getAuthIdentifier ( ) : mixed Get the unique identifier for the user.
getAuthPassword ( ) : string Get the password for the user.
getRememberToken ( ) : string Get the token value for the "remember me" session.
getRememberTokenName ( ) : string Get the column name for the "remember me" token.
getReminderEmail ( ) : string Get the e-mail address where password reminders are sent.
item ( )
setRememberToken ( string $value ) : void Set the token value for the "remember me" session.
userRole ( )

메소드 상세

getAuthIdentifier() 공개 메소드

Get the unique identifier for the user.
public getAuthIdentifier ( ) : mixed
리턴 mixed

getAuthPassword() 공개 메소드

Get the password for the user.
public getAuthPassword ( ) : string
리턴 string

getRememberToken() 공개 메소드

Get the token value for the "remember me" session.
public getRememberToken ( ) : string
리턴 string

getRememberTokenName() 공개 메소드

Get the column name for the "remember me" token.
public getRememberTokenName ( ) : string
리턴 string

getReminderEmail() 공개 메소드

Get the e-mail address where password reminders are sent.
public getReminderEmail ( ) : string
리턴 string

item() 공개 메소드

public item ( )

setRememberToken() 공개 메소드

Set the token value for the "remember me" session.
public setRememberToken ( string $value ) : void
$value string
리턴 void

userRole() 공개 메소드

public userRole ( )

프로퍼티 상세

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

protected $fillable

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

The attributes excluded from the model's JSON form.
protected array $hidden
리턴 array

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

The database table used by the model.
protected string $table
리턴 string