Overrides CacheInterface::getTimestamp
public function getTimestamp(string $key) : int { $splitKey = $this->splitKey($key); foreach ($this->caches as $cache) { if (0 < ($timestamp = $cache->getTimestamp($cache->generateKey(...$splitKey)))) { return $timestamp; } } return 0; }