Passed
Push — master ( 1f31dd...21e786 )
by Tim
08:40 queued 06:28
created
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.
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 = new Template($this->config, 'authorize:authorize_403.twig');
68 68
         if (isset($state['Source']['auth'])) {
69 69
             $t->data['logoutURL'] = Module::getModuleURL(
70
-                'core/logout/' . urlencode($state['Source']['auth']),
70
+                'core/logout/'.urlencode($state['Source']['auth']),
71 71
             );
72 72
         }
73 73
         if (isset($state['authprocAuthorize_reject_msg'])) {
Please login to merge, or discard this patch.