From d19ee461e6f8b776d05d9d9d244eba3fd3afec97 Mon Sep 17 00:00:00 2001 From: Everly Precia Suresh Date: Wed, 12 Oct 2022 14:42:00 +0000 Subject: [PATCH] style: run linter --- src/Appwrite/Auth/OAuth2/Line.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Appwrite/Auth/OAuth2/Line.php b/src/Appwrite/Auth/OAuth2/Line.php index d70da59360..fd2821c353 100644 --- a/src/Appwrite/Auth/OAuth2/Line.php +++ b/src/Appwrite/Auth/OAuth2/Line.php @@ -173,13 +173,13 @@ class Line extends OAuth2 'id_token' => $this->tokens['id_token'], 'client_id' => $this->appID, 'client_secret' => $this->appSecret, - + ]) ), true); - - if(isset($emailInfo['email'])) - $this->user['email'] = $emailInfo['email']; - + + if (isset($emailInfo['email'])) { + $this->user['email'] = $emailInfo['email']; + } } return $this->user;