From f5e92359d999e7240b168659607acad980500ada Mon Sep 17 00:00:00 2001 From: Molkobain Date: Mon, 5 Oct 2020 17:13:32 +0200 Subject: [PATCH] =?UTF-8?q?N=C2=B02847=20-=20Form:=20Fix=20return=20type?= =?UTF-8?q?=20in=20Form::GetAction()?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sources/application/UI/Component/Form/Form.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/application/UI/Component/Form/Form.php b/sources/application/UI/Component/Form/Form.php index 56dedd331c..26a1ff5c5d 100644 --- a/sources/application/UI/Component/Form/Form.php +++ b/sources/application/UI/Component/Form/Form.php @@ -49,7 +49,7 @@ class Form extends UIContentBlock /** * @return string */ - public function GetAction(): string + public function GetAction(): ?string { return $this->sAction; }