userAuthenticationValidation = $userAuthenticationValidation; } /** * @return bool */ protected function authorized(): bool { return true; } /** * @param AuthenticationCredentialsObject $object * @return bool * @throws RequestValidationException */ protected function validators($object): bool { return $this->userAuthenticationValidation->validate($object); } /** * @param AuthenticationCredentialsObject $object * @return bool */ protected function criteria($object): bool { return true; } }