Passed
Push — master ( 77f2b8...d63b3b )
by Tim
02:44
created
lib/Auth/Process/Authorize.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -81,16 +81,16 @@
 block discarded – undo
81 81
                 $values = Utils\Arrays::arrayize($values);
82 82
             } elseif (!is_array($values)) {
83 83
                 throw new \Exception(
84
-                    'Filter Authorize: Attribute values is neither string nor array: ' . var_export($attribute, true)
84
+                    'Filter Authorize: Attribute values is neither string nor array: '.var_export($attribute, true)
85 85
                 );
86 86
             }
87 87
 
88 88
             foreach ($values as $value) {
89 89
                 if (!is_string($value)) {
90 90
                     throw new \Exception(
91
-                        'Filter Authorize: Each value should be a string for attribute: ' .
92
-                        var_export($attribute, true) . ' value: ' . var_export($value, true) .
93
-                        ' Config is: ' . var_export($config, true)
91
+                        'Filter Authorize: Each value should be a string for attribute: '.
92
+                        var_export($attribute, true).' value: '.var_export($value, true).
93
+                        ' Config is: '.var_export($config, true)
94 94
                     );
95 95
                 }
96 96
             }
Please login to merge, or discard this patch.