Passed
Push — master ( d03d39...5db547 )
by Tim
21:16 queued 14:21
created
lib/Controller/Authorize.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
             $t->data['logoutURL'] = Module::getModuleURL(
68 68
                 'core/authenticate.php',
69 69
                 ['as' => $state['Source']['auth']]
70
-            ) . "&logout";
70
+            )."&logout";
71 71
         }
72 72
         if (isset($state['authprocAuthorize_reject_msg'])) {
73 73
             $t->data['reject_msg'] = $state['authprocAuthorize_reject_msg'];
Please login to merge, or discard this patch.
lib/Auth/Process/Authorize.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -82,16 +82,16 @@
 block discarded – undo
82 82
                 $values = $arrayUtils->arrayize($values);
83 83
             } elseif (!is_array($values)) {
84 84
                 throw new \Exception(
85
-                    'Filter Authorize: Attribute values is neither string nor array: ' . var_export($attribute, true)
85
+                    'Filter Authorize: Attribute values is neither string nor array: '.var_export($attribute, true)
86 86
                 );
87 87
             }
88 88
 
89 89
             foreach ($values as $value) {
90 90
                 if (!is_string($value)) {
91 91
                     throw new \Exception(
92
-                        'Filter Authorize: Each value should be a string for attribute: ' .
93
-                        var_export($attribute, true) . ' value: ' . var_export($value, true) .
94
-                        ' Config is: ' . var_export($config, true)
92
+                        'Filter Authorize: Each value should be a string for attribute: '.
93
+                        var_export($attribute, true).' value: '.var_export($value, true).
94
+                        ' Config is: '.var_export($config, true)
95 95
                     );
96 96
                 }
97 97
             }
Please login to merge, or discard this patch.