phpOMS/Utils/IO/ExchangeInterface.php
2024-03-20 07:21:26 +00:00

33 lines
660 B
PHP
Executable File

<?php
/**
* Jingga
*
* PHP Version 8.2
*
* @package phpOMS\Utils\IO
* @copyright Dennis Eichhorn
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
declare(strict_types=1);
namespace phpOMS\Utils\IO;
use phpOMS\Utils\IO\Csv\CsvInterface;
use phpOMS\Utils\IO\Json\JsonInterface;
use phpOMS\Utils\IO\Pdf\PdfInterface;
use phpOMS\Utils\IO\Spreadsheet\SpreadsheetInterface;
/**
* Exchange interface.
*
* @package phpOMS\Utils\IO
* @license OMS License 2.0
* @link https://jingga.app
* @since 1.0.0
*/
interface ExchangeInterface extends CsvInterface, JsonInterface, PdfInterface, SpreadsheetInterface
{
}