* @license GPLv2 * @package generis */ /** * Interface of drivers that can purge their content */ interface common_persistence_Purgable { /** * Remove an entry from storage * * @param string $id * @return boolean */ public function purge(); }