Completed
Push — master ( 7104d7...e39843 )
by Aleksandr
02:10
created
src/models/Auth/AuthProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -139,7 +139,7 @@
 block discarded – undo
139 139
         $row->provider = strtolower($this->providerName);
140 140
         $row->foreignKey = $data->identifier;
141 141
         $row->token = $this->authAdapter->getAccessToken()['access_token'];
142
-        $row->tokenSecret = ($this->authAdapter->getAccessToken()['access_token_secret']) ? : '';
142
+        $row->tokenSecret = ($this->authAdapter->getAccessToken()['access_token_secret']) ?: '';
143 143
         $row->tokenType = Auth\Table::TYPE_ACCESS;
144 144
         $row->save();
145 145
 
Please login to merge, or discard this patch.
src/modules/auth/controllers/auth.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
  * @param string $provider
16 16
  * @return \closure
17 17
  */
18
-return function ($provider = '') {
18
+return function($provider = '') {
19 19
     /**
20 20
      * @var Controller $this
21 21
      */
Please login to merge, or discard this patch.
src/modules/auth/controllers/endpoint.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,6 +12,6 @@
 block discarded – undo
12 12
 /**
13 13
  * @return \closure
14 14
  */
15
-return function () {
15
+return function() {
16 16
     \Hybrid_Endpoint::process();
17 17
 };
Please login to merge, or discard this patch.