N°8851 - Explicit nullable in functions parameters (#857)

This commit is contained in:
Lenaick
2026-03-26 15:52:57 +01:00
committed by GitHub
parent 398b47d5d1
commit aae6d324f9
42 changed files with 52 additions and 52 deletions

View File

@@ -164,7 +164,7 @@ class AbstractFormIO
*
* @return mixed
*/
public function GetValue(string $sEventType = null): mixed
public function GetValue(?string $sEventType = null): mixed
{
if ($sEventType === null) {
return $this->Value();
@@ -190,7 +190,7 @@ class AbstractFormIO
*
* @return bool
*/
public function HasEventValue(string $sEventType = null): bool
public function HasEventValue(?string $sEventType = null): bool
{
if ($sEventType === null) {
return $this->HasValue();