Completed
Branch master (893604)
by Ryota
03:32
created
Category
src/YConnect.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
             'redirect_uri' => $params['redirect_uri'],
57 57
         ]);
58 58
 
59
-        $options['headers']['Authorization'] = 'Basic '.base64_encode($params['client_id']. ':' . $params['client_secret']);
59
+        $options['headers']['Authorization'] = 'Basic '.base64_encode($params['client_id'].':'.$params['client_secret']);
60 60
         return $options;
61 61
     }
62 62
 
@@ -106,11 +106,11 @@  discard block
 block discarded – undo
106 106
 
107 107
     protected function getApiBaseUrl()
108 108
     {
109
-        return static::API_DOMAIN. "/yconnect/".$this->version;
109
+        return static::API_DOMAIN."/yconnect/".$this->version;
110 110
     }
111 111
 
112 112
     protected function getUserInfoBaseUrl()
113 113
     {
114
-        return static::USERINFO_DOMAIN. '/yconnect/'.$this->version;
114
+        return static::USERINFO_DOMAIN.'/yconnect/'.$this->version;
115 115
     }
116 116
 }
117 117
\ No newline at end of file
Please login to merge, or discard this patch.