From d9bae8c5787c70cb26b20698c3b02b1bd6b47a06 Mon Sep 17 00:00:00 2001 From: Martins Sipenko Date: Fri, 16 Sep 2022 18:10:55 +0300 Subject: [PATCH] Fix faulty return type hint. --- src/Optimizely/UserProfile/UserProfileServiceInterface.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Optimizely/UserProfile/UserProfileServiceInterface.php b/src/Optimizely/UserProfile/UserProfileServiceInterface.php index 7d3a5269..8dc2ee7b 100644 --- a/src/Optimizely/UserProfile/UserProfileServiceInterface.php +++ b/src/Optimizely/UserProfile/UserProfileServiceInterface.php @@ -23,7 +23,7 @@ interface UserProfileServiceInterface * * @param $userId string The ID of the user whose profile will be retrieved. * - * @return userProfile array The user profile. + * @return array The user profile. */ public function lookup($userId);