Overrides CacheBackendInterface::invalidateAll
public function invalidateAll() { try { $this->connection ->update($this->bin) ->fields([ 'expire' => $this->time ->getRequestTime() - 1, ]) ->execute(); } catch (\Exception $e) { $this->catchException($e); } }