mirror of
https://github.com/Combodo/iTop.git
synced 2026-03-01 15:14:11 +01:00
16 lines
266 B
PHP
16 lines
266 B
PHP
<?php
|
|
|
|
namespace Combodo\iTop\Forms\Block\IO\Format;
|
|
|
|
class AttributeIOFormat
|
|
{
|
|
public function __construct(public string $sAttributeName)
|
|
{
|
|
// validation du format sinon exception
|
|
}
|
|
|
|
public function __toString(): string
|
|
{
|
|
return $this->sAttributeName;
|
|
}
|
|
} |