class Redirect extends Facade (View source)

Methods

static  void
swap( mixed $instance)

Hotswap the underlying instance behind the facade.

from Facade
static  Expectation
shouldReceive()

Initiate a mock expectation on the facade.

from Facade
static  mixed
getFacadeRoot()

Get the root object behind the facade.

from Facade
static  void
clearResolvedInstance( string $name)

Clear a resolved facade instance.

from Facade
static  void
clearResolvedInstances()

Clear all of the resolved instances.

from Facade
static  Application
getFacadeApplication()

Get the application instance behind the facade.

from Facade
static  void
setFacadeApplication( Application $app)

Set the application instance.

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

Handle dynamic, static calls to the object.

from Facade

Details

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

Hotswap the underlying instance behind the facade.

Parameters

mixed $instance

Return Value

void

in Facade at line line 44
static Expectation shouldReceive()

Initiate a mock expectation on the facade.

Return Value

Expectation

in Facade at line line 118
static mixed getFacadeRoot()

Get the root object behind the facade.

Return Value

mixed

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

Clear a resolved facade instance.

Parameters

string $name

Return Value

void

in Facade at line line 170
static void clearResolvedInstances()

Clear all of the resolved instances.

Return Value

void

in Facade at line line 180
static Application getFacadeApplication()

Get the application instance behind the facade.

Return Value

Application

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

Set the application instance.

Parameters

Application $app

Return Value

void

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

Handle dynamic, static calls to the object.

Parameters

string $method
array $args

Return Value

mixed