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