示例#1
0
 /**
  * Removes all cache entries of this cache and sets the frozen flag to FALSE.
  *
  * @return void
  * @api
  */
 public function flush()
 {
     parent::flush();
     if ($this->frozen === TRUE) {
         $this->frozen = FALSE;
     }
 }
示例#2
0
 /**
  * Removes all cache entries of this cache and sets the frozen flag to FALSE.
  *
  * @return void
  * @api
  */
 public function flush()
 {
     parent::flush();
     if ($this->frozen === true) {
         $this->frozen = false;
     }
 }