Файл: gapps/vendor/laravel/framework/src/Illuminate/Http/Exception/HttpResponseException.php
Строк: 66
<?php
namespace IlluminateHttpException;
use RuntimeException;
use SymfonyComponentHttpFoundationResponse;
class HttpResponseException extends RuntimeException
{
/**
* The underlying response instance.
*
* @var SymfonyComponentHttpFoundationResponse
*/
protected $response;
/**
* Create a new HTTP response exception instance.
*
* @param SymfonyComponentHttpFoundationResponse $response
* @return void
*/
public function __construct(Response $response)
{
$this->response = $response;
}
/**
* Get the underlying response instance.
*
* @return SymfonyComponentHttpFoundationResponse
*/
public function getResponse()
{
return $this->response;
}
}