Facade

Known subclasses

LINE\Laravel\Facade\LINEBot
Abstract
Open source code
Methods Summary
public static
# spy( )
Convert the facade into a Mockery spy.
public static
# shouldReceive( )
Initiate a mock expectation on the facade.
protected static
# createFreshMockInstance( )
Create a fresh mock instance for the given class.
protected static
# createMock( )
Create a fresh mock instance for the given class.
protected static
# isMock( )
Determines whether a mock is set as the instance of the facade.
protected static
# getMockableClass( )
Get the mockable class for the bound instance.
public static
# swap( mixed $instance )
Hotswap the underlying instance behind the facade.
public static
# getFacadeRoot( )
Get the root object behind the facade.
protected static
# getFacadeAccessor( )
Get the registered name of the component.
protected static
# resolveFacadeInstance( string|object $name )
Resolve the facade root instance from the container.
public static
# clearResolvedInstance( string $name )
Clear a resolved facade instance.
public static
# clearResolvedInstances( )
Clear all of the resolved instances.
public static
# getFacadeApplication( )
Get the application instance behind the facade.
public static
# setFacadeApplication( \Illuminate\Contracts\Foundation\Application $app )
Set the application instance.
public static
# __callStatic( string $method , array $args )
Handle dynamic, static calls to the object.
Properties Summary
protected static Illuminate\Contracts\Foundation\Application $app
The application instance being facaded.
# NULL
protected static array $resolvedInstance
The resolved object instances.
# NULL