From 4a06fee978356403111f3190fcb5890bd51d96a1 Mon Sep 17 00:00:00 2001 From: Christy Jacob Date: Tue, 1 Oct 2019 14:38:32 +0530 Subject: [PATCH] chore: linting --- src/Auth/OAuth/Bitbucket.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Auth/OAuth/Bitbucket.php b/src/Auth/OAuth/Bitbucket.php index 65c32ee8c1..5d6595596c 100644 --- a/src/Auth/OAuth/Bitbucket.php +++ b/src/Auth/OAuth/Bitbucket.php @@ -46,7 +46,7 @@ class Bitbucket extends OAuth $accessToken = $this->request( 'POST', - 'https://bitbucket.org/site/oauth2/access_token', + 'https://bitbucket.org/site/oauth2/access_token', $headers, 'code=' . urlencode($code) . '&client_id=' . urlencode($this->appID) . @@ -127,5 +127,4 @@ class Bitbucket extends OAuth } return $this->user; } - }