/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
src/Illuminate/Http/Exceptions/HttpResponseException.php
40 строк
957 B
Amir Hossein Shokri
Improve docblocks for nullable parameters (#56996)
10 сен 2025, 22:14
Не верифицирован
10 сен 2025, 22:14
ef3c8eb
Код
Авторство
О чём код?
<?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; } }