We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f7ef20 commit c22bf74Copy full SHA for c22bf74
app/Views/errors/cli/error_exception.php
@@ -50,7 +50,7 @@
50
$function .= $padClass . $error['function'];
51
}
52
53
- $args = implode(', ', array_map(static fn ($value) => match (true) {
+ $args = implode(', ', array_map(static fn ($value): string => match (true) {
54
is_object($value) => 'Object(' . $value::class . ')',
55
is_array($value) => $value !== [] ? '[...]' : '[]',
56
$value === null => 'null', // return the lowercased version
0 commit comments