mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-26 12:08:47 +02:00
Add ModelReflection Service as dependency injection + tests
This commit is contained in:
16
sources/Forms/IO/Format/AbstractIOFormat.php
Normal file
16
sources/Forms/IO/Format/AbstractIOFormat.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
namespace Combodo\iTop\Forms\IO\Format;
|
||||
|
||||
use JsonSerializable;
|
||||
|
||||
abstract class AbstractIOFormat implements JsonSerializable
|
||||
{
|
||||
abstract public function jsonSerialize(): mixed;
|
||||
|
||||
abstract public static function IsCompatible(string $sOtherFormatClass): bool;
|
||||
}
|
||||
Reference in New Issue
Block a user