File "MakesHttpRequestsWrapper.php"
Full Path: /home/fundopuh/trader.fxex.org/vendor/livewire/livewire/src/Testing/MakesHttpRequestsWrapper.php
File size: 1.16 KB
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Livewire\Testing;
use Illuminate\Contracts\Debug\ExceptionHandler;
use Illuminate\Auth\Access\AuthorizationException;
use Symfony\Component\HttpKernel\Exception\HttpException;
use Illuminate\Foundation\Testing\Concerns\MakesHttpRequests;
use Illuminate\Foundation\Testing\Concerns\InteractsWithExceptionHandling;
class MakesHttpRequestsWrapper
{
use MakesHttpRequests, InteractsWithExceptionHandling;
protected $app;
public function __construct($app)
{
$this->app = $app;
}
public function temporarilyDisableExceptionHandlingAndMiddleware($callback)
{
$cachedHandler = app(ExceptionHandler::class);
$cachedShouldSkipMiddleware = $this->app->shouldSkipMiddleware();
$this->withoutExceptionHandling([HttpException::class, AuthorizationException::class])->withoutMiddleware();
$callback($this);
$this->app->instance(ExceptionHandler::class, $cachedHandler);
if (! $cachedShouldSkipMiddleware) {
unset($this->app['middleware.disable']);
}
}
public function withoutHandling($except = [])
{
return $this->withoutExceptionHandling($except);
}
}