/home/techb158/immovalet.com/vendor/laravel/framework/src/Illuminate/Auth
NameSizeModeActions
Access/-0755rm
Console/-0755rm
Events/-0755rm
Listeners/-0755rm
Middleware/-0755rm
Notifications/-0755rm
Passwords/-0755rm
Authenticatable.php17860644editdlrm
AuthenticationException.php10880644editdlrm
AuthManager.php82580644editdlrm
AuthServiceProvider.php32690644editdlrm
composer.json12360644editdlrm
CreatesUserProviders.php25410644editdlrm
DatabaseUserProvider.php46150644editdlrm
EloquentUserProvider.php58000644editdlrm
GenericUser.php25540644editdlrm
GuardHelpers.php24230644editdlrm
LICENSE.md10750644editdlrm
MustVerifyEmail.php9790644editdlrm
Recaller.php17390644editdlrm
RequestGuard.php21220644editdlrm
SessionGuard.php260040644editdlrm
TokenGuard.php34430644editdlrm
Edit: /home/techb158/immovalet.com/vendor/laravel/framework/src/Illuminate/Auth/Authenticatable.php (1786B)
getKeyName(); } /** * Get the unique identifier for the user. * * @return mixed */ public function getAuthIdentifier() { return $this->{$this->getAuthIdentifierName()}; } /** * Get the unique broadcast identifier for the user. * * @return mixed */ public function getAuthIdentifierForBroadcasting() { return $this->getAuthIdentifier(); } /** * Get the password for the user. * * @return string */ public function getAuthPassword() { return $this->password; } /** * Get the token value for the "remember me" session. * * @return string|null */ public function getRememberToken() { if (! empty($this->getRememberTokenName())) { return (string) $this->{$this->getRememberTokenName()}; } } /** * Set the token value for the "remember me" session. * * @param string $value * @return void */ public function setRememberToken($value) { if (! empty($this->getRememberTokenName())) { $this->{$this->getRememberTokenName()} = $value; } } /** * Get the column name for the "remember me" token. * * @return string */ public function getRememberTokenName() { return $this->rememberTokenName; } }