- Quickfix from error found during PHP 8 migration

This commit is contained in:
Dave Mc Nicoll 2022-10-10 15:29:07 +00:00
parent 08a8683d59
commit 863bd8d094
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'] ?? '?',
];
}