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 | */ |
| 13 | declare(strict_types=1); |
| 14 | |
| 15 | namespace phpOMS\Utils\IO; |
| 16 | |
| 17 | use phpOMS\Utils\IO\Csv\CsvInterface; |
| 18 | use phpOMS\Utils\IO\Json\JsonInterface; |
| 19 | use phpOMS\Utils\IO\Pdf\PdfInterface; |
| 20 | use 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 | */ |
| 30 | interface ExchangeInterface extends CsvInterface, JsonInterface, PdfInterface, SpreadsheetInterface |
| 31 | { |
| 32 | } |