Files
iTop/sources/Forms/IO/Format/NumberIOFormat.php
2025-11-14 10:50:57 +01:00

19 lines
285 B
PHP

<?php
namespace Combodo\iTop\Forms\IO\Format;
class NumberIOFormat
{
public mixed $oValue;
public function __construct(string $oValue)
{
$this->oValue = $oValue;
// validation du format sinon exception
}
public function __toString(): string
{
return $this->oValue;
}
}