Completed
Push — master ( 05cc68...1815d4 )
by Ryota
35:00 queued 19:58
created
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.
src/YConnectResourceOwner.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
 
29 29
     public function __call($name, $arguments)
30 30
     {
31
-        $get = substr($name,0, 3);
31
+        $get = substr($name, 0, 3);
32 32
         if ($get !== 'get') {
33 33
             return null;
34 34
         }
Please login to merge, or discard this patch.