phpOMS/Utils/IO/ExchangeInterface.php

33 lines
660 B
PHP
Executable File

<?php
/**
* Karaka
*
* PHP Version 8.1
*
* @package phpOMS\Utils\IO
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://karaka.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 1.0
* @link https://karaka.app
* @since 1.0.0
*/
interface ExchangeInterface extends CsvInterface, JsonInterface, PdfInterface, SpreadsheetInterface
{
}