Ejemplo n.º 1
0
 /**
  * @param string $key
  *
  * @return bool
  */
 public function remove($key)
 {
     if ($this->fast->remove($key)) {
         return $this->slow->remove($key);
     }
     return false;
 }