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