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