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