Esempio n. 1
0
 /**
  * Deletes all values in the cache
  *
  * @return \r8\Cache\Suffix Returns a self reference
  */
 public function flush()
 {
     $this->inner->flush();
     return $this;
 }
Esempio n. 2
0
 /**
  * Deletes all values in the cache
  *
  * @return \r8\Cache\Layered Returns a self reference
  */
 public function flush()
 {
     $this->primary->flush();
     $this->secondary->flush();
     return $this;
 }