Files
iTop/sources/Forms/IO/Format/NumberIOFormat.php
Eric Espie 11973d61ec 🎨 CS Fixer
2025-11-18 14:52:10 +01:00

20 lines
286 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;
}
}