flush() public method

Return value is a boolean true when the operation succeeds, or false on failure.
public flush ( ) : boolean
return boolean
コード例 #1
0
ファイル: Pool.php プロジェクト: matthiasmullie/scrapbook
 /**
  * {@inheritdoc}
  */
 public function clear()
 {
     $this->deferred = array();
     return $this->store->flush();
 }
コード例 #2
0
 /**
  * {@inheritdoc}
  */
 public function flush()
 {
     return $this->cache->flush();
 }
コード例 #3
0
 /**
  * {@inheritdoc}
  */
 public function clear()
 {
     return $this->store->flush();
 }