🤩 File Manager - Mr.X
PHP:
8.3.33
Server:
Apache
OS:
Linux 5.14.0-611.49.1.el9_7.x86_64
User:
websparkit
Navigate
Upload:
Upload
New File
New Folder
Editing:HttpResponseException.php
<?php namespace Illuminate\Http\Exceptions; use RuntimeException; use Symfony\Component\HttpFoundation\Response; use Throwable; class HttpResponseException extends RuntimeException { /** * The underlying response instance. * * @var \Symfony\Component\HttpFoundation\Response */ protected $response; /** * Create a new HTTP response exception instance. * * @param \Symfony\Component\HttpFoundation\Response $response * @param \Throwable|null $previous */ public function __construct(Response $response, ?Throwable $previous = null) { parent::__construct($previous?->getMessage() ?? '', $previous?->getCode() ?? 0, $previous); $this->response = $response; } /** * Get the underlying response instance. * * @return \Symfony\Component\HttpFoundation\Response */ public function getResponse() { return $this->response; } }
Save Changes
Cancel
Create New File
Create New Folder