abstract class StaticFacade

Facades abstract class

Properties

static protected object|null $instance Class instance

Methods

static string
getInstanceClass()

Return class name used form facade

static mixed
getInstanceArgs()

Get instance args

static object|null
getInstance()

Get instance

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

Call methods on instance as static

Details

at line 31
abstract static string getInstanceClass()

Return class name used form facade

Return Value

string

at line 38
static mixed getInstanceArgs()

Get instance args

Return Value

mixed

at line 65
static object|null getInstance()

Get instance

Return Value

object|null

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

Call methods on instance as static

Parameters

string $method
mixed $args

Return Value

mixed

Exceptions

RuntimeException