class Facade (View source)

Methods

static  void
swap( mixed $instance)

Hotswap the underlying instance behind the facade.

static  Expectation
shouldReceive()

Initiate a mock expectation on the facade.

static  mixed
getFacadeRoot()

Get the root object behind the facade.

static  void
clearResolvedInstance( string $name)

Clear a resolved facade instance.

static  void
clearResolvedInstances()

Clear all of the resolved instances.

static  Application
getFacadeApplication()

Get the application instance behind the facade.

static  void
setFacadeApplication( Application $app)

Set the application instance.

static  mixed
__callStatic( string $method, array $args)

Handle dynamic, static calls to the object.

Details

at line line 31
static void swap( mixed $instance)

Hotswap the underlying instance behind the facade.

Parameters

mixed $instance

Return Value

void

at line line 44
static Expectation shouldReceive()

Initiate a mock expectation on the facade.

Return Value

Expectation

at line line 118
static mixed getFacadeRoot()

Get the root object behind the facade.

Return Value

mixed

at line line 160
static void clearResolvedInstance( string $name)

Clear a resolved facade instance.

Parameters

string $name

Return Value

void

at line line 170
static void clearResolvedInstances()

Clear all of the resolved instances.

Return Value

void

at line line 180
static Application getFacadeApplication()

Get the application instance behind the facade.

Return Value

Application

at line line 191
static void setFacadeApplication( Application $app)

Set the application instance.

Parameters

Application $app

Return Value

void

at line line 205
static mixed __callStatic( string $method, array $args)

Handle dynamic, static calls to the object.

Parameters

string $method
array $args

Return Value

mixed

Exceptions

RuntimeException