From efccfda6b73b91e23dc14329a53dee7eb7cf83e6 Mon Sep 17 00:00:00 2001 From: Eldad Fux Date: Sat, 18 Jan 2020 23:08:28 +0200 Subject: [PATCH] Fixed psr standard --- src/Auth/OAuth.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Auth/OAuth.php b/src/Auth/OAuth.php index 89dde432f..e4bd23130 100644 --- a/src/Auth/OAuth.php +++ b/src/Auth/OAuth.php @@ -92,7 +92,8 @@ abstract class OAuth * * @return $this */ - protected function addScope(string $scope):OAuth{ + protected function addScope(string $scope):OAuth + { // Add a scope to the scopes array if it isn't already present if (!in_array($scope, $this->scopes)){ $this->scopes[] = $scope; @@ -103,7 +104,8 @@ abstract class OAuth /** * @return array */ - protected function getScopes():array{ + protected function getScopes():array + { return $this->scopes; }