PHP Class Owl\Repositories\Eloquent\Models\User

Inheritance: extends Illuminate\Database\Eloquent\Model
Afficher le fichier Open project: owl/owl Class Usage Examples

Protected Properties

Свойство Type Description
$fillable
$hidden array The attributes excluded from the model's JSON form.
$table string The database table used by the model.

Méthodes publiques

Méthode Description
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 ( )

Method Details

getAuthIdentifier() public méthode

Get the unique identifier for the user.
public getAuthIdentifier ( ) : mixed
Résultat mixed

getAuthPassword() public méthode

Get the password for the user.
public getAuthPassword ( ) : string
Résultat string

getRememberToken() public méthode

Get the token value for the "remember me" session.
public getRememberToken ( ) : string
Résultat string

getRememberTokenName() public méthode

Get the column name for the "remember me" token.
public getRememberTokenName ( ) : string
Résultat string

getReminderEmail() public méthode

Get the e-mail address where password reminders are sent.
public getReminderEmail ( ) : string
Résultat string

item() public méthode

public item ( )

setRememberToken() public méthode

Set the token value for the "remember me" session.
public setRememberToken ( string $value ) : void
$value string
Résultat void

userRole() public méthode

public userRole ( )

Property Details

$fillable protected_oe property

protected $fillable

$hidden protected_oe property

The attributes excluded from the model's JSON form.
protected array $hidden
Résultat array

$table protected_oe property

The database table used by the model.
protected string $table
Résultat string