/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/authentication/src/Authenticator
NameSizeModeActions
AbstractAuthenticator.php26950644editdlrm
AuthenticationRequiredException.php20000644editdlrm
AuthenticatorCollection.php30140644editdlrm
AuthenticatorInterface.php10130644editdlrm
CookieAuthenticator.php78820644editdlrm
EnvironmentAuthenticator.php49860644editdlrm
FormAuthenticator.php45850644editdlrm
HttpBasicAuthenticator.php34870644editdlrm
HttpDigestAuthenticator.php100150644editdlrm
ImpersonationInterface.php19260644editdlrm
JwtAuthenticator.php47740644editdlrm
PersistenceInterface.php19220644editdlrm
Result.php32800644editdlrm
ResultInterface.php20890644editdlrm
SessionAuthenticator.php68120644editdlrm
StatelessInterface.php14480644editdlrm
TokenAuthenticator.php46410644editdlrm
UnauthenticatedException.php16220644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/authentication/src/Authenticator/Result.php (3280B)
_status = $status; $this->_data = $data; $this->_errors = $messages; } /** * Returns whether the result represents a successful authentication attempt. * * @return bool */ public function isValid(): bool { return $this->_status === ResultInterface::SUCCESS; } /** * Get the result status for this authentication attempt. * * @return string */ public function getStatus(): string { return $this->_status; } /** * Returns the identity data used in the authentication attempt. * * @return \ArrayAccess|array|null */ public function getData() { return $this->_data; } /** * Returns an array of string reasons why the authentication attempt was unsuccessful. * * If authentication was successful, this method returns an empty array. * * @return array */ public function getErrors(): array { return $this->_errors; } }