mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-24 11:08:45 +02:00
N°8771 - Add Symfony form component to iTop core
- IO
This commit is contained in:
22
sources/Forms/Converter/AbstractOutputConverter.php
Normal file
22
sources/Forms/Converter/AbstractOutputConverter.php
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user