Skip to content

Commit 47d69b6

Browse files
committed
refactor: update var_export() return
1 parent f29210c commit 47d69b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Views/errors/cli/error_exception.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
$function .= $padClass . $error['function'];
5151
}
5252

53-
$args = implode(', ', array_map(static fn ($value): ?string => match (true) {
53+
$args = implode(', ', array_map(static fn ($value): string => match (true) {
5454
is_object($value) => 'Object(' . $value::class . ')',
5555
is_array($value) => $value !== [] ? '[...]' : '[]',
5656
$value === null => 'null', // return the lowercased version

0 commit comments

Comments
 (0)