Zend Framework
1.12
|
Public Member Functions | |
__construct (ReflectionClass $reflection, $namespace=null, $argv=false) | |
Constructor. | |
__call ($method, $args) | |
Proxy reflection calls. | |
__get ($key) | |
Retrieve configuration parameters. | |
__set ($key, $value) | |
Set configuration parameters. | |
getMethods () | |
Return array of dispatchable Zend_Server_Reflection_Methods. | |
getNamespace () | |
Get namespace for this class. | |
setNamespace ($namespace) | |
Set namespace for this class. | |
__wakeup () | |
Wakeup from serialization. | |
Protected Attributes | |
$_config = array() | |
$_methods = array() | |
$_namespace = null | |
$_reflection | |
__construct | ( | ReflectionClass | $reflection, |
$namespace = null , |
|||
$argv = false |
|||
) |
Constructor.
Create array of dispatchable methods, each a Zend_Server_Reflection_Method. Sets reflection object property.
ReflectionClass | $reflection | |
string | $namespace | |
mixed | $argv |
__call | ( | $method, | |
$args | |||
) |
Proxy reflection calls.
string | $method | |
array | $args |
__get | ( | $key | ) |
Retrieve configuration parameters.
Values are retrieved by key from $_config. Returns null if no value found.
string | $key |
__set | ( | $key, | |
$value | |||
) |
Set configuration parameters.
Values are stored by $key in $_config.
string | $key | |
mixed | $value |
__wakeup | ( | ) |
Wakeup from serialization.
Reflection needs explicit instantiation to work correctly. Re-instantiate reflection object on wakeup.
getMethods | ( | ) |
getNamespace | ( | ) |
Get namespace for this class.
setNamespace | ( | $namespace | ) |
Set namespace for this class.
string | $namespace |
|
protected |
|
protected |
|
protected |
|
protected |