Example #1
0
 /**
  * Fetches an entry from the cache.
  *
  * @param string $id The id of the cache entry to fetch.
  *
  * @return string|bool The cached data or FALSE, if no cache entry exists for the given id.
  */
 protected function doFetch($id)
 {
     return $this->store->get($id) ?: false;
 }