From 457466c5af3cfbda5d5a220031d9e14f50116bd4 Mon Sep 17 00:00:00 2001 From: Luke Towers Date: Tue, 29 Oct 2019 16:33:49 -0600 Subject: [PATCH] Fix typehint --- modules/cms/classes/Controller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/cms/classes/Controller.php b/modules/cms/classes/Controller.php index 5b09fa038..44b2b5fea 100644 --- a/modules/cms/classes/Controller.php +++ b/modules/cms/classes/Controller.php @@ -1609,7 +1609,7 @@ class Controller * Adds a cookie with a token for CSRF checks to the response. * @return Response */ - protected function addXsrfCookie(\Illuminate\Http\Response $response) + protected function addXsrfCookie(\Symfony\Component\HttpFoundation\Response $response) { $config = Config::get('session');