File manager - Edit - /var/www/html/transparencia/vendor/laravel/framework/src/Illuminate/Http/Client/RequestException.php
Back
<?php namespace Illuminate\Http\Client; use GuzzleHttp\Psr7\Message; class RequestException extends HttpClientException { /** * The response instance. * * @var \Illuminate\Http\Client\Response */ public $response; /** * The current truncation length for the exception message. * * @var int|false */ public $truncateExceptionsAt; /** * The global truncation length for the exception message. * * @var int|false */ public static $truncateAt = 120; /** * Create a new exception instance. * * @param \Illuminate\Http\Client\Response $response * @param int|false|null $truncateExceptionsAt */ public function __construct(Response $response, $truncateExceptionsAt = null) { parent::__construct("HTTP request returned status code {$response->status()}", $response->status()); $this->truncateExceptionsAt = $truncateExceptionsAt; $this->response = $response; } /** * Enable truncation of request exception messages. * * @return void */ public static function truncate() { static::$truncateAt = 120; } /** * Set the truncation length for request exception messages. * * @param int $length * @return void */ public static function truncateAt(int $length) { static::$truncateAt = $length; } /** * Disable truncation of request exception messages. * * @return void */ public static function dontTruncate() { static::$truncateAt = false; } /** * Prepare the exception message. * * @return void */ public function report(): void { $truncateExceptionsAt = $this->truncateExceptionsAt ?? static::$truncateAt; $summary = $truncateExceptionsAt ? Message::bodySummary($this->response->toPsrResponse(), $truncateExceptionsAt) : Message::toString($this->response->toPsrResponse()); if (! is_null($summary)) { $this->message .= ":\n{$summary}\n"; } } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.28 | Generation time: 0.02 |
proxy
|
phpinfo
|
Settings