mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 09:48:40 +00:00
49 lines
835 B
PHP
49 lines
835 B
PHP
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.4
|
|
*
|
|
* @package phpOMS\Utils\IO\Csv
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://orange-management.org
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace phpOMS\Utils\IO\Csv;
|
|
|
|
/**
|
|
* Cvs interface.
|
|
*
|
|
* @package phpOMS\Utils\IO\Csv
|
|
* @license OMS License 1.0
|
|
* @link https://orange-management.org
|
|
* @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;
|
|
}
|