mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-27 06:04:12 +01:00
19 lines
289 B
PHP
19 lines
289 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);
|
|
}
|
|
} |