Пример #1
0
 public function fetch($id)
 {
     $cache = $this->cacheManager->getCacheItem($id);
     if (!$cache) {
         return null;
     }
     return new CacheEntity($cache);
 }