Doctrine\Common\Cache\SQLite3Cache::doFetch PHP Method

doFetch() protected method

protected doFetch ( $id )
    protected function doFetch($id)
    {
        $item = $this->findById($id);
        if (!$item) {
            return false;
        }
        return unserialize($item[self::DATA_FIELD]);
    }