/** * Remove old/all data from cache. * * @param int $opt Cache::% options */ public function clean($opt = 0) { $this->doClean($opt); if (isset($this->chainNext) && ~$opt & self::NOCASCADE) { $this->chainNext->clean($opt); } }