lithium\data\Model::$_instances
Stores model instances for internal use.
While the Model
public API does not require instantiation thanks to late static binding
introduced in PHP 5.3, LSB does not apply to class attributes. In order to prevent you
from needing to redeclare every single Model
class attribute in subclasses, instances of
the models are stored and used internally.
Source
protected static $_instances = [];