Viewing file: MakesHttpRequestsWrapper.php (1.16 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?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); } }
|