Passed
Branch main (c9f3a5)
by TARIQ
10:22
created
www/brighty/app/Views/errors/cli/error_exception.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,11 +37,11 @@
 block discarded – undo
37 37
         if (isset($error['class'])) {
38 38
             $type = ($error['type'] === '->') ? '()' . $error['type'] : $error['type'];
39 39
             $function .= $padClass . $error['class'] . $type . $error['function'];
40
-        } elseif (! isset($error['class']) && isset($error['function'])) {
40
+        } elseif (!isset($error['class']) && isset($error['function'])) {
41 41
             $function .= $padClass . $error['function'];
42 42
         }
43 43
 
44
-        $args = implode(', ', array_map(static function ($value) {
44
+        $args = implode(', ', array_map(static function($value) {
45 45
             switch (true) {
46 46
                 case is_object($value):
47 47
                     return 'Object(' . get_class($value) . ')';
Please login to merge, or discard this patch.