From 1384e518e1606df6ddfa157e73f3970f19edc6cf Mon Sep 17 00:00:00 2001
From: Demian Katz <demian.katz@villanova.edu>
Date: Thu, 12 Nov 2020 14:06:26 -0500
Subject: [PATCH] Fix incorrect class name.

---
 module/VuFind/src/VuFind/Bootstrapper.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/module/VuFind/src/VuFind/Bootstrapper.php b/module/VuFind/src/VuFind/Bootstrapper.php
index 6168970c509..5c0fa68edf2 100644
--- a/module/VuFind/src/VuFind/Bootstrapper.php
+++ b/module/VuFind/src/VuFind/Bootstrapper.php
@@ -374,7 +374,7 @@ class Bootstrapper
             if ($exception instanceof \VuFind\Exception\HttpStatusInterface) {
                 $response = $e->getResponse();
                 if (!$response) {
-                    $response = new HttpResponse();
+                    $response = new \Laminas\Http\Response();
                     $e->setResponse($response);
                 }
                 $response->setStatusCode($exception->getHttpStatus());
-- 
GitLab