contains($key)) { throw new Exception('Unable to retrieve the value'); } return $this->fetch($key); } /** * {@inheritdoc} */ public function deleteMulti(array $keys) { foreach ($keys as $key) { $this->delete($key); } return $this; } }