Test Failed
Branch master (c1f513)
by Rutger
03:30
created
src/models/base/Oauth2RefreshToken.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,8 +25,8 @@
 block discarded – undo
25 25
 
26 26
 
27 27
     /**
28
-    * @inheritdoc
29
-    */
28
+     * @inheritdoc
29
+     */
30 30
     //public static $tableName = 'oauth2_refresh_token';
31 31
 
32 32
 
Please login to merge, or discard this patch.
src/models/base/Oauth2UserClient.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,8 +25,8 @@
 block discarded – undo
25 25
 
26 26
 
27 27
     /**
28
-    * @inheritdoc
29
-    */
28
+     * @inheritdoc
29
+     */
30 30
     //public static $tableName = 'oauth2_user_client';
31 31
 
32 32
 
Please login to merge, or discard this patch.
src/models/base/Oauth2UserClientScope.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,8 +25,8 @@
 block discarded – undo
25 25
 
26 26
 
27 27
     /**
28
-    * @inheritdoc
29
-    */
28
+     * @inheritdoc
29
+     */
30 30
     //public static $tableName = 'oauth2_user_client_scope';
31 31
 
32 32
 
Please login to merge, or discard this patch.
src/models/base/Oauth2AccessTokenScope.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,8 +22,8 @@
 block discarded – undo
22 22
 
23 23
 
24 24
     /**
25
-    * @inheritdoc
26
-    */
25
+     * @inheritdoc
26
+     */
27 27
     //public static $tableName = 'oauth2_access_token_scope';
28 28
 
29 29
 
Please login to merge, or discard this patch.
src/models/base/Oauth2Scope.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,8 +33,8 @@
 block discarded – undo
33 33
 
34 34
 
35 35
     /**
36
-    * @inheritdoc
37
-    */
36
+     * @inheritdoc
37
+     */
38 38
     //public static $tableName = 'oauth2_scope';
39 39
 
40 40
 
Please login to merge, or discard this patch.
src/models/base/Oauth2AuthCode.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,8 +29,8 @@
 block discarded – undo
29 29
 
30 30
 
31 31
     /**
32
-    * @inheritdoc
33
-    */
32
+     * @inheritdoc
33
+     */
34 34
     //public static $tableName = 'oauth2_auth_code';
35 35
 
36 36
 
Please login to merge, or discard this patch.
src/models/base/Oauth2ClientScope.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,8 +26,8 @@
 block discarded – undo
26 26
 
27 27
 
28 28
     /**
29
-    * @inheritdoc
30
-    */
29
+     * @inheritdoc
30
+     */
31 31
     //public static $tableName = 'oauth2_client_scope';
32 32
 
33 33
 
Please login to merge, or discard this patch.
src/models/queries/traits/Oauth2EnabledQueryTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,14 +14,14 @@
 block discarded – undo
14 14
     {
15 15
         /** @var ActiveQuery $this */
16 16
         if (!is_null($enabled)) {
17
-            if (is_null($this->from)){
17
+            if (is_null($this->from)) {
18 18
                 /** @var Oauth2ActiveRecordInterface $modelClass */
19 19
                 $modelClass = $this->modelClass;
20 20
                 $table = $modelClass::tableName();
21 21
             } else {
22 22
                 $table = array_key_first($this->from);
23 23
             }
24
-            $this->andWhere([ "$table.enabled" => $enabled]);
24
+            $this->andWhere(["$table.enabled" => $enabled]);
25 25
         }
26 26
 
27 27
         return $this;
Please login to merge, or discard this patch.
src/controllers/web/server/Oauth2AuthorizeAction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -115,7 +115,7 @@
 block discarded – undo
115 115
                 $maxAge = $this->getRequestParam($request, OidcAuthRequestInterface::REQUEST_PARAMETER_MAX_AGE);
116 116
                 if ($maxAge === '') {
117 117
                     $maxAge = null;
118
-                } elseif($maxAge !== null) {
118
+                } elseif ($maxAge !== null) {
119 119
                     $maxAge = (int)$maxAge;
120 120
                 }
121 121
 
Please login to merge, or discard this patch.