/**
  * @param string $key
  *
  * @return \DateTime|null
  */
 public function get($key)
 {
     if ($time = $this->fast->get($key)) {
         return $time;
     }
     return $this->slow->get($key);
 }
Exemple #2
0
 public function get($key)
 {
     return $this->driver->get($key);
 }