Completed
Pull Request — master (#145)
by
unknown
01:50
created
src/Providers/BaiduProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
      */
53 53
     protected function getAuthUrl($state)
54 54
     {
55
-        return $this->buildAuthUrlFromBase($this->baseUrl . '/oauth/' . $this->version . '/authorize', $state);
55
+        return $this->buildAuthUrlFromBase($this->baseUrl.'/oauth/'.$this->version.'/authorize', $state);
56 56
     }
57 57
 
58 58
     /**
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
      */
77 77
     protected function getTokenUrl()
78 78
     {
79
-        return $this->baseUrl . '/oauth/' . $this->version . '/token';
79
+        return $this->baseUrl.'/oauth/'.$this->version.'/token';
80 80
     }
81 81
 
82 82
     /**
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
      */
101 101
     protected function getUserByToken(AccessTokenInterface $token)
102 102
     {
103
-        $response = $this->getHttpClient()->get($this->baseUrl . '/rest/' . $this->version . '/passport/users/getInfo', [
103
+        $response = $this->getHttpClient()->get($this->baseUrl.'/rest/'.$this->version.'/passport/users/getInfo', [
104 104
             'query'   => [
105 105
                 'access_token' => $token->getToken(),
106 106
             ],
Please login to merge, or discard this patch.