clean() public method

if no group is specified all cache files will be destroyed else only cache files of the specified group will be destroyed
public clean ( string $group = false ) : boolean
$group string name of the cache group
return boolean true if no problem
Beispiel #1
0
 /**
  * Flush the cache. Deletes all the cache files.
  */
 public function clear()
 {
     $this->cache->clean();
 }