. */ namespace Doctrine\Common\Cache; /** * Interface for cache that can be flushed. * * @link www.doctrine-project.org * @since 1.4 * @author Adirelle */ interface ClearableCache { /** * Deletes all cache entries. * * @return boolean TRUE if the cache entries were successfully deleted, FALSE otherwise. */ public function deleteAll(); }