home
/
zktecojo
/
public_html
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Exception
➕ New
📤 Upload
✎ Editing:
WhoopsDisplayer.php
← Back
<?php namespace Illuminate\Exception; use Exception; use Whoops\Run; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpKernel\Exception\HttpExceptionInterface; class WhoopsDisplayer implements ExceptionDisplayerInterface { /** * The Whoops run instance. * * @var \Whoops\Run */ protected $whoops; /** * Indicates if the application is in a console environment. * * @var bool */ protected $runningInConsole; /** * Create a new Whoops exception displayer. * * @param \Whoops\Run $whoops * @param bool $runningInConsole * @return void */ public function __construct(Run $whoops, $runningInConsole) { $this->whoops = $whoops; $this->runningInConsole = $runningInConsole; } /** * Display the given exception to the user. * * @param \Exception $exception * @return \Symfony\Component\HttpFoundation\Response */ public function display(Exception $exception) { $status = $exception instanceof HttpExceptionInterface ? $exception->getStatusCode() : 500; $headers = $exception instanceof HttpExceptionInterface ? $exception->getHeaders() : array(); return new Response($this->whoops->handleException($exception), $status, $headers); } }
💾 Save Changes
Cancel
📤 Upload File
×
Select File
Upload
Cancel
➕ Create New
×
Type
📄 File
📁 Folder
Name
Create
Cancel
✎ Rename Item
×
Current Name
New Name
Rename
Cancel
🔐 Change Permissions
×
Target File
Permission (e.g., 0755, 0644)
0755
0644
0777
Apply
Cancel