From 9d24a1532b4bd12d803b27ecddf124d01968558f Mon Sep 17 00:00:00 2001 From: Matej Baco Date: Sat, 5 Feb 2022 16:49:34 +0100 Subject: [PATCH] Cleanup --- src/Appwrite/Auth/OAuth2/Bitly.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Appwrite/Auth/OAuth2/Bitly.php b/src/Appwrite/Auth/OAuth2/Bitly.php index fb1cb57e1..02a21dc29 100644 --- a/src/Appwrite/Auth/OAuth2/Bitly.php +++ b/src/Appwrite/Auth/OAuth2/Bitly.php @@ -78,10 +78,10 @@ class Bitly extends OAuth2 ]) ); - $output = []; - \parse_str($response, $output); - $this->tokens = $output; - } + $output = []; + \parse_str($response, $output); + $this->tokens = $output; + } return $this->tokens; }