Facade
abstract class Facade
Properties
| static protected | $app | The application instance being facaded. |
|
| static protected array | $resolvedInstance | The resolved object instances. |
|
| static protected bool | $cached | Indicates if the resolved instance should be cached. |
Methods
Convert the facade into a Mockery spy.
Initiate a partial mock on the facade.
Initiate a mock expectation on the facade.
Initiate a mock expectation on the facade.
Create a fresh mock instance for the given class.
Create a fresh mock instance for the given class.
Determines whether a mock is set as the instance of the facade.
Get the mockable class for the bound instance.
Hotswap the underlying instance behind the facade.
Determines whether a "fake" has been set as the facade instance.
Get the root object behind the facade.
Get the registered name of the component.
Resolve the facade root instance from the container.
Clear a resolved facade instance.
Clear all of the resolved instances.
Get the application default aliases.
Get the application instance behind the facade.
Set the application instance.
Handle dynamic, static calls to the object.
Details
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.
at line 71
static
spy()
Convert the facade into a Mockery spy.
at line 89
static
partialMock()
Initiate a partial mock on the facade.
Tests only. Swaps the resolved facade instance for the worker lifetime.
at line 105
static
shouldReceive()
Initiate a mock expectation on the facade.
Tests only. Swaps the resolved facade instance for the worker lifetime.
at line 121
static
expects()
Initiate a mock expectation on the facade.
Tests only. Swaps the resolved facade instance for the worker lifetime.
at line 135
static protected
createFreshMockInstance()
Create a fresh mock instance for the given class.
at line 147
static protected
createMock()
Create a fresh mock instance for the given class.
at line 157
static protected bool
isMock()
Determines whether a mock is set as the instance of the facade.
at line 168
static protected string|null
getMockableClass()
Get the mockable class for the bound instance.
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.
at line 196
static bool
isFake()
Determines whether a "fake" has been set as the facade instance.
at line 207
static mixed
getFacadeRoot()
Get the root object behind the facade.
at line 215
static protected string
getFacadeAccessor()
Get the registered name of the component.
at line 223
static protected mixed
resolveFacadeInstance(string $name)
Resolve the facade root instance from the container.
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.
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.
at line 265
static Collection
defaultAliases()
Get the application default aliases.
at line 324
static
getFacadeApplication()
Get the application instance behind the 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.
at line 347
static
__callStatic(string $method, array $args)
Handle dynamic, static calls to the object.