PHP 클래스 Ergo\Decorator

파일 보기 프로젝트 열기: 99designs/ergo

공개 메소드들

메소드 설명
__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.

메소드 상세

__call() 공개 메소드

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

__construct() 공개 메소드

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

__get() 공개 메소드

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

__getObject() 공개 메소드

Returns the decorated object.
public __getObject ( )

__set() 공개 메소드

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

__setObject() 공개 메소드

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