LazyRecord\BaseModel::getInternalCache PHP Method

getInternalCache() public method

get internal cache from php memory.
public getInternalCache ( string $key ) : mixed
$key string cache key
return mixed cached value
    public function getInternalCache($key)
    {
        if (isset($this->_cache[$key])) {
            return $this->_cache[$key];
        }
    }