N°8772 - Form dependencies manager implementation - WIP

This commit is contained in:
Eric Espie
2025-10-23 15:11:14 +02:00
parent 98c0b11db7
commit fd449d195d
13 changed files with 133 additions and 55 deletions

View File

@@ -10,7 +10,7 @@ class FormOutput
private string $sType;
private AbstractConverter $oConverter;
private null|AbstractConverter $oConverter;
public function __construct(string $sName, string $sType, AbstractConverter $oConverter = null)
{
@@ -41,7 +41,7 @@ class FormOutput
public function GetOutputValue(mixed $oData): mixed
{
$this->oConverter->Convert($oData);
return $this->oConverter->Convert($oData);
}