Overrides RemovableCacheInterface::remove
public function remove(string $name, string $cls) : void { foreach ($this->caches as $cache) { if ($cache instanceof RemovableCacheInterface) { $cache->remove($name, $cls); } } }