Completed
Pull Request — devel (#18)
by
unknown
38:28
created
src/Module.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -191,7 +191,7 @@
 block discarded – undo
191 191
     /**
192 192
      * @var int duration of login time for multiple authorize calls
193 193
      */
194
-    public $loginDuration = 60 * 60 * 24 * 30;
194
+    public $loginDuration = 60*60*24*30;
195 195
 
196 196
     /**
197 197
      * @var bool configure authorization code (enforce_redirect)
Please login to merge, or discard this patch.
src/models/BaseModel.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
         if ($this->hasAttribute($name)) {
172 172
             $this->_attributes[$name] = $value;
173 173
         } else {
174
-            throw new InvalidArgumentException(get_class($this) . ' has no attribute named "' . $name . '".');
174
+            throw new InvalidArgumentException(get_class($this).' has no attribute named "'.$name.'".');
175 175
         }
176 176
     }
177 177
 
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
         if (isset($this->_oldAttributes[$name]) || $this->hasAttribute($name)) {
209 209
             $this->_oldAttributes[$name] = $value;
210 210
         } else {
211
-            throw new InvalidArgumentException(get_class($this) . ' has no attribute named "' . $name . '".');
211
+            throw new InvalidArgumentException(get_class($this).' has no attribute named "'.$name.'".');
212 212
         }
213 213
     }
214 214
 
@@ -382,10 +382,10 @@  discard block
 block discarded – undo
382 382
      * If not set, [[formName()]] will be used.
383 383
      * @return boolean whether the model is successfully populated with some data.
384 384
      */
385
-    public function loadIds($data, $formName=null)
385
+    public function loadIds($data, $formName = null)
386 386
     {
387 387
         $camelData = [];
388
-        foreach($data as $key => $value) {
388
+        foreach ($data as $key => $value) {
389 389
             $key = lcfirst(Inflector::id2camel($key));
390 390
             $camelData[$key] = $value;
391 391
         }
Please login to merge, or discard this patch.
src/commands/ClientController.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -77,10 +77,10 @@  discard block
 block discarded – undo
77 77
         $client->grantTypes = empty($this->grantTypes) ? null : explode(',', $this->grantTypes);
78 78
         if ($client->save() === true) {
79 79
             $this->stdout('Client created :'."\n");
80
-            $this->stdout(' - id: ' . $client->id . "\n");
81
-            $this->stdout(' - secret: ' . $client->secret . "\n");
82
-            $this->stdout(' - name: ' . $client->name . "\n");
83
-            $this->stdout(' - redirectUri: ' . implode(',', $client->redirectUri) . "\n");
80
+            $this->stdout(' - id: '.$client->id."\n");
81
+            $this->stdout(' - secret: '.$client->secret."\n");
82
+            $this->stdout(' - name: '.$client->name."\n");
83
+            $this->stdout(' - redirectUri: '.implode(',', $client->redirectUri)."\n");
84 84
             return ExitCode::OK;
85 85
         } else {
86 86
             $this->stdout('Client cannot be created.'."\n");
@@ -99,11 +99,11 @@  discard block
 block discarded – undo
99 99
             $client->scopes = empty($this->scopes) ? null : explode(',', $this->scopes);
100 100
             $client->grantTypes = empty($this->grantTypes) ? null : explode(',', $this->grantTypes);
101 101
             if ($client->save() === true) {
102
-                $this->stdout('Client updated :' . "\n");
103
-                $this->stdout(' - id: ' . $client->id . "\n");
104
-                $this->stdout(' - secret: ' . $client->secret . "\n");
105
-                $this->stdout(' - name: ' . $client->name . "\n");
106
-                $this->stdout(' - redirectUri: ' . implode(',', $client->redirectUri) . "\n");
102
+                $this->stdout('Client updated :'."\n");
103
+                $this->stdout(' - id: '.$client->id."\n");
104
+                $this->stdout(' - secret: '.$client->secret."\n");
105
+                $this->stdout(' - name: '.$client->name."\n");
106
+                $this->stdout(' - redirectUri: '.implode(',', $client->redirectUri)."\n");
107 107
                 return ExitCode::OK;
108 108
             } else {
109 109
                 $this->stdout('Client cannot be updated.'."\n");
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
      */
124 124
     protected function getRandomString($length = 40)
125 125
     {
126
-        $bytes = (int) $length/2;
126
+        $bytes = (int)$length/2;
127 127
         return bin2hex(openssl_random_pseudo_bytes($bytes));
128 128
     }
129 129
 }
Please login to merge, or discard this patch.
src/traits/mySql/TypeConverter.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
         if ((isset($this->attributesDefinitions[$key]) === true)
57 57
             && (in_array($this->attributesDefinitions[$key], $bypassTypes) === false)
58 58
         ) {
59
-            switch($this->attributesDefinitions[$key]) {
59
+            switch ($this->attributesDefinitions[$key]) {
60 60
                 case 'bool':
61 61
                 case 'boolean':
62 62
                     $value = $value ? 1 : 0;
@@ -98,11 +98,11 @@  discard block
 block discarded – undo
98 98
             switch ($this->attributesDefinitions[$key]) {
99 99
                 case 'bool':
100 100
                 case 'boolean':
101
-                    $value = (bool) $value;
101
+                    $value = (bool)$value;
102 102
                     break;
103 103
                 case 'int':
104 104
                 case 'integer':
105
-                    $value = (int) $value;
105
+                    $value = (int)$value;
106 106
                     break;
107 107
                 case 'array':
108 108
                     if (is_array($value) === false) {
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
                 case 'real':
120 120
                 case 'double':
121 121
                 case 'float':
122
-                    $value = (float) $value;
122
+                    $value = (float)$value;
123 123
                     break;
124 124
             }
125 125
         }
Please login to merge, or discard this patch.
src/services/mySql/AccessTokenService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
             ->where('id = :id', [':id' => $accessTokenKey])
70 70
             ->one($this->db);
71 71
         if ($entity !== false) {
72
-            throw new DuplicateKeyException('Duplicate key "' . $accessTokenKey . '"');
72
+            throw new DuplicateKeyException('Duplicate key "'.$accessTokenKey.'"');
73 73
         }
74 74
         $values = $accessToken->getDirtyAttributes($attributes);
75 75
         $accessTokenParameters = [];
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
                 ->where('id = :id', [':id' => $values[$modelKey]])
136 136
                 ->one($this->db);
137 137
             if ($entity !== false) {
138
-                throw new DuplicateKeyException('Duplicate key "' . $values[$modelKey] . '"');
138
+                throw new DuplicateKeyException('Duplicate key "'.$values[$modelKey].'"');
139 139
             }
140 140
         }
141 141
         $accessTokenKey = isset($values[$modelKey]) ? $values[$modelKey] : $accessToken->getKey();
Please login to merge, or discard this patch.
src/services/mySql/BaseService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
     protected function encodeAttributes(Array $attributes)
79 79
     {
80 80
         $data = Json::encode($attributes);
81
-        $etag = '"' . rtrim(base64_encode(sha1($data, true)), '=') . '"';
81
+        $etag = '"'.rtrim(base64_encode(sha1($data, true)), '=').'"';
82 82
         return $etag;
83 83
     }
84 84
 
Please login to merge, or discard this patch.
src/services/mySql/RefreshTokenService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
             ->where('id = :id', [':id' => $refreshTokenKey])
74 74
             ->one($this->db);
75 75
         if ($entity !== false) {
76
-            throw new DuplicateKeyException('Duplicate key "' . $refreshTokenKey . '"');
76
+            throw new DuplicateKeyException('Duplicate key "'.$refreshTokenKey.'"');
77 77
         }
78 78
         $values = $refreshToken->getDirtyAttributes($attributes);
79 79
         $refreshTokenParameters = [];
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
                 ->where('id = :id', [':id' => $values[$modelKey]])
140 140
                 ->one($this->db);
141 141
             if ($entity !== false) {
142
-                throw new DuplicateKeyException('Duplicate key "' . $values[$modelKey] . '"');
142
+                throw new DuplicateKeyException('Duplicate key "'.$values[$modelKey].'"');
143 143
             }
144 144
         }
145 145
         $refreshTokenKey = isset($values[$modelKey]) ? $values[$modelKey] : $refreshToken->getKey();
Please login to merge, or discard this patch.
src/services/mySql/JwtService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
             ->where('id = :id', [':id' => $jwt->id])
67 67
             ->one($this->db);
68 68
         if ($entity !== false) {
69
-            throw new DuplicateKeyException('Duplicate key "' . $jwt->id . '"');
69
+            throw new DuplicateKeyException('Duplicate key "'.$jwt->id.'"');
70 70
         }
71 71
         $values = $jwt->getDirtyAttributes($attributes);
72 72
         $jwtParameters = [];
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
                 ->where('id = :id', [':id' => $values[$modelKey]])
121 121
                 ->one($this->db);
122 122
             if ($entity !== false) {
123
-                throw new DuplicateKeyException('Duplicate key "' . $values[$modelKey] . '"');
123
+                throw new DuplicateKeyException('Duplicate key "'.$values[$modelKey].'"');
124 124
             }
125 125
         }
126 126
         $jwtKey = isset($values[$modelKey]) ? $values[$modelKey] : $jwt->getKey();
Please login to merge, or discard this patch.
src/services/mySql/ClientService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
             ->where('id = :id', [':id' => $clientKey])
85 85
             ->one($this->db);
86 86
         if ($entity !== false) {
87
-            throw new DuplicateKeyException('Duplicate key "' . $clientKey . '"');
87
+            throw new DuplicateKeyException('Duplicate key "'.$clientKey.'"');
88 88
         }
89 89
         $values = $client->getDirtyAttributes($attributes);
90 90
         $clientParameters = [];
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
                 ->where('id = :id', [':id' => $values[$modelKey]])
163 163
                 ->one($this->db);
164 164
             if ($entity !== false) {
165
-                throw new DuplicateKeyException('Duplicate key "' . $values[$modelKey] . '"');
165
+                throw new DuplicateKeyException('Duplicate key "'.$values[$modelKey].'"');
166 166
             }
167 167
         }
168 168
         $clientKey = isset($values[$modelKey]) ? $values[$modelKey] : $client->getKey();
Please login to merge, or discard this patch.