MvcLite\ObjectAbstract

Base Object Class

All classes in the MVCLite framework extends this class

Synopsis

class ObjectAbstract {
  • // constants
  • const MSG_ERR_IDENTIFY = 'Descendents must implement the identify method';
}

Coverage

Methods 100% 5 / 5
Lines 100% 15 / 15

Constants

Name Value
MSG_ERR_IDENTIFY 'Descendents must implement the identify method'

Methods

public

  • __call() — Overriding the __call magic method
  • __get() — Overriding the __get magic method
  • __set() — Overriding the __set magic method
  • __toString() — returns a string representation of the object
  • identify() — method used to identify the object instance

History