/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/Recaller.php (1739B)
recaller = @unserialize($recaller, ['allowed_classes' => false]) ?: $recaller; } /** * Get the user ID from the recaller. * * @return string */ public function id() { return explode('|', $this->recaller, 3)[0]; } /** * Get the "remember token" token from the recaller. * * @return string */ public function token() { return explode('|', $this->recaller, 3)[1]; } /** * Get the password from the recaller. * * @return string */ public function hash() { return explode('|', $this->recaller, 3)[2]; } /** * Determine if the recaller is valid. * * @return bool */ public function valid() { return $this->properString() && $this->hasAllSegments(); } /** * Determine if the recaller is an invalid string. * * @return bool */ protected function properString() { return is_string($this->recaller) && Str::contains($this->recaller, '|'); } /** * Determine if the recaller has all segments. * * @return bool */ protected function hasAllSegments() { $segments = explode('|', $this->recaller); return count($segments) === 3 && trim($segments[0]) !== '' && trim($segments[1]) !== ''; } }