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

@@ -34,7 +34,7 @@ class FormOutput extends AbstractFormIO
*
* @throws FormBlockIOException
*/
public function __construct(string $sName, string $sType, bool $bIsArray = false, AbstractConverter $oConverter = null)
public function __construct(string $sName, string $sType, bool $bIsArray = false, ?AbstractConverter $oConverter = null)
{
parent::__construct($sName, $sType, $bIsArray);
$this->oConverter = $oConverter;