Files
iTop/sources/Forms/Block/IO/Format/RawFormat.php
2025-11-12 17:09:40 +01:00

19 lines
295 B
PHP

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