/** * Синглтон кэша * * @static * @return CArrayList */ protected static function getCache() { if (is_null(self::$_cache)) { self::$_cache = new CArrayList(); } return self::$_cache; }