fix stringing
This commit is contained in:
parent
7e64d1b052
commit
d663c7892a
1 changed files with 1 additions and 1 deletions
|
@ -635,7 +635,7 @@ function _fatal_error(\Exception $e): void
|
|||
foreach ($t as $n => $f) {
|
||||
$c = $f['class'] ?? '';
|
||||
$t = $f['type'] ?? '';
|
||||
$a = implode(", ", array_map("stringer", $f['args']));
|
||||
$a = implode(", ", array_map("Shimmie2\stringer", $f['args']));
|
||||
print("$n: {$f['file']}({$f['line']}): {$c}{$t}{$f['function']}({$a})\n");
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue