From 7bf5da97594ee302e2fe50e8688df8414517037a Mon Sep 17 00:00:00 2001 From: Simon Trockel Date: Wed, 26 Jan 2022 11:09:51 +0100 Subject: [PATCH] Fix formatting src/Appwrite/Auth/OAuth2/Microsoft.php Co-authored-by: Christy Jacob --- src/Appwrite/Auth/OAuth2/Microsoft.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Appwrite/Auth/OAuth2/Microsoft.php b/src/Appwrite/Auth/OAuth2/Microsoft.php index 7f3b54567..630c4aa22 100644 --- a/src/Appwrite/Auth/OAuth2/Microsoft.php +++ b/src/Appwrite/Auth/OAuth2/Microsoft.php @@ -171,7 +171,7 @@ class Microsoft extends OAuth2 * Extracts the Tenant Id from the JSON stored in appSecret. Defaults to 'common' as a fallback * @return string */ - protected function getTenantId():string + protected function getTenantId(): string { $secret = $this->decodeJson(); return (isset($secret['tenantId'])) ? $secret['tenantId'] : 'common';