/home/techb158/dev.balacoffee.com/vendor/facade/ignition/src/ErrorPage
NameSizeModeActions
ErrorPageHandler.php21610644editdlrm
ErrorPageViewModel.php54100644editdlrm
IgnitionExceptionRenderer.php5890644editdlrm
IgnitionWhoopsHandler.php11280644editdlrm
Renderer.php9600644editdlrm
Edit: /home/techb158/dev.balacoffee.com/vendor/facade/ignition/src/ErrorPage/IgnitionWhoopsHandler.php (1128B)
errorPageHandler = $errorPageHandler; } public function handle(): ?int { try { $this->errorPageHandler->handle($this->exception); } catch (Error $error) { // Errors aren't caught by Whoops. // Convert the error to an exception and throw again. throw new ErrorException( $error->getMessage(), $error->getCode(), 1, $error->getFile(), $error->getLine(), $error ); } return Handler::QUIT; } /** @param \Throwable $exception */ public function setException($exception): void { $this->exception = $exception; } }