We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b6e76c commit 6f3ec1fCopy full SHA for 6f3ec1f
ErrorHandler.php
@@ -539,7 +539,7 @@ public function handleException(\Throwable $exception)
539
if (null !== $exceptionHandler) {
540
return $exceptionHandler($exception);
541
}
542
- $handlerException = $handlerException ?: $exception;
+ $handlerException ??= $exception;
543
} catch (\Throwable $handlerException) {
544
545
if ($exception === $handlerException && null === $this->exceptionHandler) {
0 commit comments