From ed7956250b903c309c5cc660f1b970a6317f9410 Mon Sep 17 00:00:00 2001 From: Sybille Peters Date: Tue, 10 Dec 2024 19:05:04 +0100 Subject: [PATCH] Fix lint --- Classes/Events/FormControllerFormActionEvent.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/Events/FormControllerFormActionEvent.php b/Classes/Events/FormControllerFormActionEvent.php index 61000eb0b..60b620f37 100644 --- a/Classes/Events/FormControllerFormActionEvent.php +++ b/Classes/Events/FormControllerFormActionEvent.php @@ -68,7 +68,7 @@ public function getFormController(): FormController */ public function assign(string $key, mixed $value) { - $this->view->assign($key, $value) + $this->view->assign($key, $value); } /**