PHP Class Ergo\Decorator

Afficher le fichier Open project: 99designs/ergo

Méthodes publiques

Méthode Description
__call ( String $method, Array $args ) : Unknown Forward method calls.
__construct ( Object $object ) Constructor.
__get ( $name ) : Unknown Forward property get.
__getObject ( ) Returns the decorated object.
__set ( String $name, Unknown $value ) Forward property set.
__setObject ( $object ) Replace the decorated delegate with the specified object.

Method Details

__call() public méthode

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

__construct() public méthode

Constructor.
public __construct ( Object $object )
$object Object

__get() public méthode

Forward property get.
public __get ( $name ) : Unknown
Résultat Unknown

__getObject() public méthode

Returns the decorated object.
public __getObject ( )

__set() public méthode

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

__setObject() public méthode

Replace the decorated delegate with the specified object.
public __setObject ( $object )