diff --git a/src/Auth/OAuth.php b/src/Auth/OAuth.php index 89dde432f1..e4bd231302 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; }