flush() public method

Return value is a boolean true when the operation succeeds, or false on failure.
public flush ( ) : boolean
return boolean
Example #1
0
 /**
  * {@inheritdoc}
  */
 public function clear()
 {
     $this->deferred = array();
     return $this->store->flush();
 }
Example #2
0
 /**
  * {@inheritdoc}
  */
 public function flush()
 {
     return $this->cache->flush();
 }
Example #3
0
 /**
  * {@inheritdoc}
  */
 public function clear()
 {
     return $this->store->flush();
 }