From 1fe0747eb959474fde1493931c905621b737cc1b Mon Sep 17 00:00:00 2001 From: Brady McDonough Date: Thu, 15 Feb 2024 16:54:10 -0700 Subject: [PATCH] Forgot returns --- src/Workflow/UserManagement.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Workflow/UserManagement.php b/src/Workflow/UserManagement.php index fc2725d..838bd52 100644 --- a/src/Workflow/UserManagement.php +++ b/src/Workflow/UserManagement.php @@ -81,9 +81,9 @@ class UserManagement implements WorkflowInterface { if (\is_null($this->db->getSecret($this->userIndex))) { - $this->viewEnrollForm(); + return $this->viewEnrollForm(); } - $this->viewUnenrollForm(); + return $this->viewUnenrollForm(); } function response(): bool