File manager - Edit - /var/www/payraty/helpdesk/vendor/livewire/livewire/src/Features/SupportTesting/RequestBroker.php
Back
<?php namespace Livewire\Features\SupportTesting; use Illuminate\Foundation\Testing\Concerns\InteractsWithExceptionHandling; use Illuminate\Foundation\Testing\Concerns\MakesHttpRequests; use Symfony\Component\HttpKernel\Exception\HttpException; use Illuminate\Auth\Access\AuthorizationException; use Illuminate\Contracts\Debug\ExceptionHandler; class RequestBroker { use MakesHttpRequests, InteractsWithExceptionHandling; protected $app; function __construct($app) { $this->app = $app; } function temporarilyDisableExceptionHandlingAndMiddleware($callback) { $cachedHandler = app(ExceptionHandler::class); $cachedShouldSkipMiddleware = $this->app->shouldSkipMiddleware(); $this->withoutExceptionHandling([HttpException::class, AuthorizationException::class])->withoutMiddleware(); $result = $callback($this); $this->app->instance(ExceptionHandler::class, $cachedHandler); if (! $cachedShouldSkipMiddleware) { unset($this->app['middleware.disable']); } return $result; } function withoutHandling($except = []) { return $this->withoutExceptionHandling($except); } function addHeaders(array $headers) { $this->serverVariables = $this->transformHeadersToServerVars($headers); return $this; } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings