PHP Class Ergo\RegistryProxy

Show file Open project: 99designs/ergo

Public Methods

Method Description
__call ( String $method, Array $args ) : Unknown Forward method calls.
__construct ( $handle ) Constructor
__get ( $name ) : Unknown Forward property get.
__set ( String $name, Unknown $value ) Forward property set.

Protected Methods

Method Description
__lookup ( ) Looks up the proxy object

Method Details

__call() public method

Forward method calls.
public __call ( String $method, Array $args ) : Unknown
$method String method name
$args Array method arguments
return Unknown method return value

__construct() public method

Constructor
public __construct ( $handle )

__get() public method

Forward property get.
public __get ( $name ) : Unknown
return Unknown

__lookup() protected method

Looks up the proxy object
protected __lookup ( )

__set() public method

Forward property set.
public __set ( String $name, Unknown $value )
$name String property name
$value Unknown property value