Passed
Push — master ( 621e10...df6011 )
by Tim
01:59
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.