Class Object is the root of the class hierarchy. Every class has Object as a superclass.
__class ⇒ Class
-
Object of [class-class] class
__get(name) ⇒ Value
-
Get any attribute value by it’s name
name |
String |
Name of the attribute |
Return
Attribute value
__invoke(name, …) ⇒ Value
-
Execute any method, by it’s name
name |
String |
Name of the method |
… |
Value |
Any values that are required for method execution |
Return
Method return value if method returns something