mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-27 14:14:11 +01:00
19 lines
295 B
PHP
19 lines
295 B
PHP
<?php
|
|
|
|
namespace Combodo\iTop\Forms\Block\IO\Format;
|
|
|
|
class RawFormat
|
|
{
|
|
public string $oValue;
|
|
|
|
public function __construct(string $oValue)
|
|
{
|
|
$this->oValue = $oValue;
|
|
// validation du format sinon exception
|
|
}
|
|
|
|
public function __toString(): string
|
|
{
|
|
return strval($this->oValue);
|
|
}
|
|
} |