contains($id)) { throw new Exception(sprintf('Unable to find key %s', $id)); } return $this->fetch($id); } /** * {@inheritdoc} */ public function deleteMulti(array $keys) { foreach ($keys as $key) { $this->delete($key); } return $this; } }