N°8772 - Traditional parameters declaration

This commit is contained in:
Eric Espie
2025-10-30 14:16:36 +01:00
parent 4c10cfee60
commit 601cde0e2d
7 changed files with 35 additions and 7 deletions

View File

@@ -4,8 +4,11 @@ namespace Combodo\iTop\Forms\Block\IO\Format;
class RawFormat
{
public function __construct(public string $oValue)
public string $oValue;
public function __construct(string $oValue)
{
$this->oValue = $oValue;
// validation du format sinon exception
}