Facade
abstract class Facade (View source)
Adapted and included from Laravel's Support Facade class.
Properties
static protected | $app | ||
static protected array | $resolvedInstance | The resolved object instances. |
Methods
Get the root object behind the facade.
Resolve the facade root instance from the container.
Get the registered name of the component.
Clear a resolved facade instance.
Clear all of the resolved instances.
Get the application instance behind the facade.
Handle dynamic, static calls to the object.
Details
static mixed
getFacadeRoot()
Get the root object behind the facade.
static protected mixed
resolveFacadeInstance(string $name)
Resolve the facade root instance from the container.
static protected string
getFacadeAccessor()
Get the registered name of the component.
static
clearResolvedInstance(string $name)
Clear a resolved facade instance.
static
clearResolvedInstances()
Clear all of the resolved instances.
static Application
getFacadeApplication()
Get the application instance behind the facade.
static
setFacadeApplication(Application $app)
Set the application instance.
static mixed
__callStatic(string $method, array $args)
Handle dynamic, static calls to the object.