Cache\Adapter\Apcu\ApcuCachePool::fetchObjectFromCache PHP Method

fetchObjectFromCache() protected method

protected fetchObjectFromCache ( $key )
    protected function fetchObjectFromCache($key)
    {
        if ($this->skipIfCli()) {
            return [false, null, []];
        }
        $success = false;
        $data = apcu_fetch($key, $success);
        return [$success, $data, []];
    }