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