Extends
lithium\core\StaticObject
List of base model classes. Any classes which are declared to be base model classes (i.e.
extended but not directly interacted with) must be present in this list. Models can declare
themselves as base models using the following code:
{{{
public static function __init() {
static::_isBase(__CLASS__, true);
parent::__init();
}
}}}