/home/techb158/ileadtechnology.com/vendor/laravel/framework/src/Illuminate/Auth
NameSizeModeActions
Access/-0755rm
Console/-0755rm
Events/-0755rm
Listeners/-0755rm
Middleware/-0755rm
Notifications/-0755rm
Passwords/-0755rm
Authenticatable.php15740644editdlrm
AuthenticationException.php10880644editdlrm
AuthManager.php77930755editdlrm
AuthServiceProvider.php36900755editdlrm
composer.json11560644editdlrm
CreatesUserProviders.php25410644editdlrm
DatabaseUserProvider.php46150755editdlrm
EloquentUserProvider.php58000755editdlrm
GenericUser.php25540755editdlrm
GuardHelpers.php24190644editdlrm
LICENSE.md10750644editdlrm
MustVerifyEmail.php9790644editdlrm
Recaller.php17390644editdlrm
RequestGuard.php21220644editdlrm
SessionGuard.php236810644editdlrm
TokenGuard.php34430644editdlrm
Edit: /home/techb158/ileadtechnology.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]) !== ''; } }