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

20 lines
290 B
PHP

<?php
namespace Combodo\iTop\Forms\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);
}
}