N°8771 - Add Symfony form component to iTop core

- IO
This commit is contained in:
Benjamin Dalsass
2025-10-24 07:15:35 +02:00
parent 5582afe5ae
commit a51272f107
15 changed files with 233 additions and 44 deletions

View File

@@ -0,0 +1,22 @@
<?php
/*
* @copyright Copyright (C) 2010-2025 Combodo SARL
* @license http://opensource.org/licenses/AGPL-3.0
*/
namespace Combodo\iTop\Forms\Converter;
/**
* Output converter.
*/
abstract class AbstractOutputConverter
{
/**
* Convert the date to output format.
*
* @param mixed $oData
*
* @return mixed
*/
abstract public function Convert(mixed $oData): mixed;
}