diff --git a/src/Appwrite/Auth/OAuth2/Zoom.php b/src/Appwrite/Auth/OAuth2/Zoom.php index 19bab05250..9aa77ceb91 100644 --- a/src/Appwrite/Auth/OAuth2/Zoom.php +++ b/src/Appwrite/Auth/OAuth2/Zoom.php @@ -134,7 +134,7 @@ class Zoom extends OAuth2 public function getUserName(string $accessToken):string { $response = $this->getUser($accessToken); - return $response['first_name'] ?? '' . ' ' . $response['last_name'] ?? ''; + return ($response['first_name'] ?? '') . ' ' . ($response['last_name'] ?? ''); } /**