Magic Methods
Name | Description |
---|---|
__construct(...) | Called when creating a new instance. |
__destruct() | Called when object has no references left. |
__call($name, $array) | Called when invoking inaccessible methods in an object context. |
__callStatic($name, $array) | Called when invoking inaccessible ... |