From ecae436f4f0326401302999763d11fb839600c08 Mon Sep 17 00:00:00 2001 From: Christy Jacob Date: Mon, 13 Jan 2020 00:15:01 +0530 Subject: [PATCH] chore: removed debug comments --- src/Auth/OAuth/Bitbucket.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Auth/OAuth/Bitbucket.php b/src/Auth/OAuth/Bitbucket.php index c95d77aeb2..377d9a5142 100644 --- a/src/Auth/OAuth/Bitbucket.php +++ b/src/Auth/OAuth/Bitbucket.php @@ -32,13 +32,9 @@ class Bitbucket extends OAuth */ public function getLoginURL(): string { - // add each required scope to the user scopes and pass $this->scopes to the query builder - // var_dump($this->getScopes()); foreach ($this->requiredScope as $item) { $this->addScope($item); } - // var_dump($this->getScopes()); - // exit(); return 'https://bitbucket.org/site/oauth2/authorize?' .http_build_query([ 'response_type' => 'code',