PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
livewire
/
livewire
/
src
/
Features
/
SupportTesting
/
Editing: RequestBroker.php
<?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; } }
SAVE
CANCEL