예제 #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);
 }
예제 #2
0
 public function get($key)
 {
     return $this->driver->get($key);
 }