class Exceptions extends Facade

Properties

static protected $app

The application instance being facaded.

from  Facade
static protected array $resolvedInstance

The resolved object instances.

from  Facade
static protected bool $cached

Indicates if the resolved instance should be cached.

from  Facade

Methods

static void
resolved(Closure $callback)

Run a Closure when the facade has been resolved.

from  Facade
static 
spy()

Convert the facade into a Mockery spy.

from  Facade
static 
partialMock()

Initiate a partial mock on the facade.

from  Facade
static 
shouldReceive()

Initiate a mock expectation on the facade.

from  Facade
static 
expects()

Initiate a mock expectation on the facade.

from  Facade
static 
createFreshMockInstance()

Create a fresh mock instance for the given class.

from  Facade
static 
createMock()

Create a fresh mock instance for the given class.

from  Facade
static bool
isMock()

Determines whether a mock is set as the instance of the facade.

from  Facade
static string|null
getMockableClass()

Get the mockable class for the bound instance.

from  Facade
static 
swap(mixed $instance)

Hotswap the underlying instance behind the facade.

from  Facade
static bool
isFake()

Determines whether a "fake" has been set as the facade instance.

from  Facade
static mixed
getFacadeRoot()

Get the root object behind the facade.

from  Facade
static string
getFacadeAccessor()

Get the registered name of the component.

static mixed
resolveFacadeInstance(string $name)

Resolve the facade root instance from the container.

from  Facade
static void
clearResolvedInstance(string|null $name = null)

Clear a resolved facade instance.

from  Facade
static void
clearResolvedInstances()

Clear all of the resolved instances.

from  Facade
static Collection
defaultAliases()

Get the application default aliases.

from  Facade
static 
getFacadeApplication()

Get the application instance behind the facade.

from  Facade
static void
setFacadeApplication(mixed $app)

Set the application instance.

from  Facade
static 
__callStatic(string $method, array $args)

Handle dynamic, static calls to the object.

from  Facade
fake(array|string $exceptions = [])

Replace the bound instance with a fake.

static void
register()

No description

reportable(callable $reportUsing)

No description

static Handler
renderable(callable $renderUsing)

No description

static Handler
map(callable|string $from, Closure|string|null $to = 'null')

No description

static Handler
dontReport(array|string $exceptions)

No description

static Handler
dontReportWhen(callable $dontReportWhen)

No description

static Handler
ignore(array|string $exceptions)

No description

static Handler
dontRetry(array|string $exceptions)

No description

static Handler
dontRetryWhen(callable $dontRetryWhen)

No description

static bool
shouldStopRetries(Throwable $e)

No description

static Handler
dontFlash(array|string $attributes)

No description

static Handler
level(string $type, string $level)

No description

static void
report(Throwable $e)

No description

static bool
shouldReport(Throwable $e)

No description

static Handler
throttleUsing(callable $throttleUsing)

No description

static Handler
stopIgnoring(array|string $exceptions)

No description

static Handler
buildContextUsing(Closure $contextCallback)

No description

static Response
render(Request $request, Throwable $e)

No description

static void
afterResponse(callable $callback)

No description

static Handler
respondUsing(callable $callback)

No description

static Handler
shouldRenderJsonWhen(callable $callback)

No description

static void
renderForConsole(OutputInterface $output, Throwable $e)

No description

static Handler
dontReportDuplicates()

No description

handler()

No description

static void
assertReported(Closure $exception)

No description

static void
assertReportedCount(int $count)

No description

static void
assertNotReported(Closure $exception)

No description

static void
assertNothingReported()

No description

throwOnReport()

No description

throwFirstReported()

No description

static array
reported()

No description

setHandler(ExceptionHandler $handler)

No description

Details

in Facade at line 55
static void resolved(Closure $callback)

Run a Closure when the facade has been resolved.

Boot-only. The callback is registered on the worker-global container and runs for every subsequent resolution of the facade accessor.

Parameters

Closure $callback

Return Value

void

in Facade at line 71
static spy()

Convert the facade into a Mockery spy.

in Facade at line 89
static partialMock()

Initiate a partial mock on the facade.

Tests only. Swaps the resolved facade instance for the worker lifetime.

in Facade at line 105
static shouldReceive()

Initiate a mock expectation on the facade.

Tests only. Swaps the resolved facade instance for the worker lifetime.

in Facade at line 121
static expects()

Initiate a mock expectation on the facade.

Tests only. Swaps the resolved facade instance for the worker lifetime.

in Facade at line 135
static protected createFreshMockInstance()

Create a fresh mock instance for the given class.

in Facade at line 147
static protected createMock()

Create a fresh mock instance for the given class.

in Facade at line 157
static protected bool isMock()

Determines whether a mock is set as the instance of the facade.

Return Value

bool

in Facade at line 168
static protected string|null getMockableClass()

Get the mockable class for the bound instance.

Return Value

string|null

in Facade at line 184
static swap(mixed $instance)

Hotswap the underlying instance behind the facade.

Tests only. Replaces the worker-wide resolved facade instance and container binding; runtime use races across coroutines and changes every subsequent facade call.

Parameters

mixed $instance

in Facade at line 196
static bool isFake()

Determines whether a "fake" has been set as the facade instance.

Return Value

bool

in Facade at line 207
static mixed getFacadeRoot()

Get the root object behind the facade.

Return Value

mixed

at line 67
static protected string getFacadeAccessor()

Get the registered name of the component.

Return Value

string

in Facade at line 223
static protected mixed resolveFacadeInstance(string $name)

Resolve the facade root instance from the container.

Parameters

string $name

Return Value

mixed

in Facade at line 246
static void clearResolvedInstance(string|null $name = null)

Clear a resolved facade instance.

Boot or tests only. Clears a worker-wide facade cache entry; concurrent coroutines may still hold the previous resolved instance.

Parameters

string|null $name

Return Value

void

in Facade at line 257
static void clearResolvedInstances()

Clear all of the resolved instances.

Boot or tests only. Clears the worker-wide facade cache; concurrent coroutines may still hold previously resolved instances.

Return Value

void

in Facade at line 265
static Collection defaultAliases()

Get the application default aliases.

Return Value

Collection

in Facade at line 324
static getFacadeApplication()

Get the application instance behind the facade.

in Facade at line 337
static void setFacadeApplication(mixed $app)

Set the application instance.

Tests only. Replaces the worker-wide facade application reference; runtime use races across coroutines and breaks every facade lookup.

Parameters

mixed $app

Return Value

void

in Facade at line 347
static __callStatic(string $method, array $args)

Handle dynamic, static calls to the object.

Parameters

string $method
array $args

Exceptions

RuntimeException

at line 56
static ExceptionHandlerFake fake(array|string $exceptions = [])

Replace the bound instance with a fake.

Parameters

array|string $exceptions

Return Value

ExceptionHandlerFake

at line 49
static void register()

No description

Return Value

void

at line 49
static ReportableHandler reportable(callable $reportUsing)

No description

Parameters

callable $reportUsing

Return Value

ReportableHandler

at line 49
static Handler renderable(callable $renderUsing)

No description

Parameters

callable $renderUsing

Return Value

Handler

at line 49
static Handler map(callable|string $from, Closure|string|null $to = 'null')

No description

Parameters

callable|string $from
Closure|string|null $to

Return Value

Handler

at line 49
static Handler dontReport(array|string $exceptions)

No description

Parameters

array|string $exceptions

Return Value

Handler

at line 49
static Handler dontReportWhen(callable $dontReportWhen)

No description

Parameters

callable $dontReportWhen

Return Value

Handler

at line 49
static Handler ignore(array|string $exceptions)

No description

Parameters

array|string $exceptions

Return Value

Handler

at line 49
static Handler dontRetry(array|string $exceptions)

No description

Parameters

array|string $exceptions

Return Value

Handler

at line 49
static Handler dontRetryWhen(callable $dontRetryWhen)

No description

Parameters

callable $dontRetryWhen

Return Value

Handler

at line 49
static bool shouldStopRetries(Throwable $e)

No description

Parameters

Throwable $e

Return Value

bool

at line 49
static Handler dontFlash(array|string $attributes)

No description

Parameters

array|string $attributes

Return Value

Handler

at line 49
static Handler level(string $type, string $level)

No description

Parameters

string $type
string $level

Return Value

Handler

at line 49
static void report(Throwable $e)

No description

Parameters

Throwable $e

Return Value

void

at line 49
static bool shouldReport(Throwable $e)

No description

Parameters

Throwable $e

Return Value

bool

at line 49
static Handler throttleUsing(callable $throttleUsing)

No description

Parameters

callable $throttleUsing

Return Value

Handler

at line 49
static Handler stopIgnoring(array|string $exceptions)

No description

Parameters

array|string $exceptions

Return Value

Handler

at line 49
static Handler buildContextUsing(Closure $contextCallback)

No description

Parameters

Closure $contextCallback

Return Value

Handler

at line 49
static Response render(Request $request, Throwable $e)

No description

Parameters

Request $request
Throwable $e

Return Value

Response

at line 49
static void afterResponse(callable $callback)

No description

Parameters

callable $callback

Return Value

void

at line 49
static Handler respondUsing(callable $callback)

No description

Parameters

callable $callback

Return Value

Handler

at line 49
static Handler shouldRenderJsonWhen(callable $callback)

No description

Parameters

callable $callback

Return Value

Handler

at line 49
static void renderForConsole(OutputInterface $output, Throwable $e)

No description

Parameters

OutputInterface $output
Throwable $e

Return Value

void

at line 49
static Handler dontReportDuplicates()

No description

Return Value

Handler

at line 49
static ExceptionHandler handler()

No description

Return Value

ExceptionHandler

at line 49
static void assertReported(Closure $exception)

No description

Parameters

Closure $exception

Return Value

void

at line 49
static void assertReportedCount(int $count)

No description

Parameters

int $count

Return Value

void

at line 49
static void assertNotReported(Closure $exception)

No description

Parameters

Closure $exception

Return Value

void

at line 49
static void assertNothingReported()

No description

Return Value

void

at line 49
static ExceptionHandlerFake throwOnReport()

No description

Return Value

ExceptionHandlerFake

at line 49
static ExceptionHandlerFake throwFirstReported()

No description

Return Value

ExceptionHandlerFake

at line 49
static array reported()

No description

Return Value

array

at line 49
static ExceptionHandlerFake setHandler(ExceptionHandler $handler)

No description

Parameters

ExceptionHandler $handler

Return Value

ExceptionHandlerFake