Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 557 Bytes

Object.md

File metadata and controls

25 lines (18 loc) · 557 Bytes

Object

This class should be used as base class for [nearly] every class.

use Koine\Hash;

class MyClass extends Object {}

$object = new MyClass;
  • getClass
$object->getClass(); // MyClass
  • methodMissing - method to be overriden in order to implement __call
  • respondTo - refer to respondTo
  • send - refer to send
  • toString - the __toString() method

Final methods

  • __respondTo($method) - if implements method
  • __send($method[, $arg1[, $arg2]]) - dynamically calls method