This commit is contained in:
Dave M. 2022-11-29 19:55:45 +00:00
commit 7d1bfb6bd3
1 changed files with 2 additions and 2 deletions

View File

@ -26,8 +26,8 @@ class Dump {
public function renderArray() {
return [
'content' => $this->content,
'file' => $this->trace['file'],
'line' => $this->trace['line'],
'file' => $this->trace['file'] ?? '?',
'line' => $this->trace['line'] ?? '?',
];
}