mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 17:58:41 +00:00
49 lines
802 B
PHP
Executable File
49 lines
802 B
PHP
Executable File
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.2
|
|
*
|
|
* @package phpOMS\Utils\IO\Csv
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace phpOMS\Utils\IO\Csv;
|
|
|
|
/**
|
|
* Cvs interface.
|
|
*
|
|
* @package phpOMS\Utils\IO\Csv
|
|
* @license OMS License 2.0
|
|
* @link https://jingga.app
|
|
* @since 1.0.0
|
|
*/
|
|
interface CsvInterface
|
|
{
|
|
/**
|
|
* Export Csv.
|
|
*
|
|
* @param string $path Path to export
|
|
*
|
|
* @return void
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public function exportCsv(string $path) : void;
|
|
|
|
/**
|
|
* Import Csv.
|
|
*
|
|
* @param string $path Path to import
|
|
*
|
|
* @return void
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public function importCsv(string $path) : void;
|
|
}
|