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