ErrLock PHP Framework
0.1
|
Base class for all our classes. More...
Public Member Functions | |
__call (string $name, array $args) | |
Call to inaccessible method. More... | |
__get (string $name) | |
Getter for inaccessible properties. More... | |
__set (string $name, $value) | |
Setter for inaccessible properties. More... | |
Base class for all our classes.
This class should be inherited by all our classes.
EPF\StdClass::__call | ( | string | $name, |
array | $args | ||
) |
Call to inaccessible method.
Allows calling protected methods by friends
EPF\StdClass::__get | ( | string | $name | ) |
Getter for inaccessible properties.
Allows getting protected properties by friends
EPF\StdClass::__set | ( | string | $name, |
$value | |||
) |
Setter for inaccessible properties.
Allows setting protected properties by friends