Update composer dependencies

and fix an error found by new PHPStan update
This commit is contained in:
Dylan K. Taylor
2025-05-17 13:46:33 +01:00
parent 04de72e85e
commit 67f3bb9c52
3 changed files with 38 additions and 29 deletions

View File

@ -84,6 +84,6 @@ final class ThreadCrashInfo extends ThreadSafe{
public function getThreadName() : string{ return $this->threadName; }
public function makePrettyMessage() : string{
return sprintf("%s: \"%s\" in \"%s\" on line %d", $this->type ?? "Fatal error", $this->message, Filesystem::cleanPath($this->file), $this->line);
return sprintf("%s: \"%s\" in \"%s\" on line %d", $this->type, $this->message, Filesystem::cleanPath($this->file), $this->line);
}
}