Method |
Description |
|
__call ( string $name, array $params ) : mixed |
Calls the named method which is not a class method. |
|
__construct ( array $config = [] ) |
Constructor. |
|
__get ( string $name ) : mixed |
Returns the value of an object property. |
|
__isset ( string $name ) : boolean |
Checks if a property is set, i.e. defined and not null. |
|
__set ( string $name, mixed $value ) |
Sets value of an object property. |
|
__unset ( string $name ) |
Sets an object property to null. |
|
canGetProperty ( string $name, boolean $checkVars = true ) : boolean |
Returns a value indicating whether a property can be read. |
|
canSetProperty ( string $name, boolean $checkVars = true ) : boolean |
Returns a value indicating whether a property can be set. |
|
className ( ) : string |
Returns the fully qualified name of this class. |
|
hasMethod ( string $name ) : boolean |
Returns a value indicating whether a method is defined. |
|
hasProperty ( string $name, boolean $checkVars = true ) : boolean |
Returns a value indicating whether a property is defined. |
|
init ( ) |
Initializes the object. |
|