PrivateBin\Model::_getStore PHP Метод

_getStore() приватный Метод

Gets, and creates if neccessary, a store object
private _getStore ( ) : AbstractData
Результат AbstractData
    private function _getStore()
    {
        if ($this->_store === null) {
            $this->_store = forward_static_call('PrivateBin\\Data\\' . $this->_conf->getKey('class', 'model') . '::getInstance', $this->_conf->getSection('model_options'));
        }
        return $this->_store;
    }