From b8160e6ae86a5dd452eb2737017bf7c8970e735f Mon Sep 17 00:00:00 2001 From: Varun Patil Date: Thu, 3 Aug 2023 20:54:44 -0700 Subject: [PATCH] util: fix constructor of callback response Signed-off-by: Varun Patil --- lib/UtilController.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/UtilController.php b/lib/UtilController.php index 2cdab66b..eb1b5b15 100644 --- a/lib/UtilController.php +++ b/lib/UtilController.php @@ -37,6 +37,7 @@ trait UtilController public function __construct(\Closure $closure) { + parent::__construct(); $this->_closure = $closure; }