Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2/**
3 * Jingga
4 *
5 * PHP Version 8.1
6 *
7 * @package   phpOMS\Utils\IO
8 * @copyright Dennis Eichhorn
9 * @license   OMS License 2.0
10 * @version   1.0.0
11 * @link      https://jingga.app
12 */
13declare(strict_types=1);
14
15namespace phpOMS\Utils\IO;
16
17use phpOMS\Utils\IO\Csv\CsvInterface;
18use phpOMS\Utils\IO\Json\JsonInterface;
19use phpOMS\Utils\IO\Pdf\PdfInterface;
20use phpOMS\Utils\IO\Spreadsheet\SpreadsheetInterface;
21
22/**
23 * Exchange interface.
24 *
25 * @package phpOMS\Utils\IO
26 * @license OMS License 2.0
27 * @link    https://jingga.app
28 * @since   1.0.0
29 */
30interface ExchangeInterface extends CsvInterface, JsonInterface, PdfInterface, SpreadsheetInterface
31{
32}