From 33d9824c57cfa501242f6663391880de0b007576 Mon Sep 17 00:00:00 2001 From: Sybille Peters Date: Thu, 17 Oct 2024 09:13:30 +0200 Subject: [PATCH] [TASK] Add request to FormControllerFormActionEvent --- Classes/Events/FormControllerFormActionEvent.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Classes/Events/FormControllerFormActionEvent.php b/Classes/Events/FormControllerFormActionEvent.php index be140004e..3ec44fd3d 100644 --- a/Classes/Events/FormControllerFormActionEvent.php +++ b/Classes/Events/FormControllerFormActionEvent.php @@ -5,6 +5,7 @@ use In2code\Powermail\Controller\FormController; use In2code\Powermail\Domain\Model\Form; +use TYPO3\CMS\Extbase\Mvc\RequestInterface; use TYPO3Fluid\Fluid\View\ViewInterface; final class FormControllerFormActionEvent @@ -59,4 +60,9 @@ public function getView(): ViewInterface { return $this->view; } + + public function getRequest(): RequestInterface + { + return $this->request; + } }