<?php
/**
* Export CSV
* php version 7
*
* @category CSV
* @package ExportCSV
* @author Ramesh N Jangid <[email protected]>
* @copyright 2025 Ramesh N Jangid
* @license MIT https://opensource.org/license/mit
* @link https://github.com/polygoncoin/Export-CSV
* @since Class available since Release 1.0.0
*/
namespace ExportCSV;
require_once __DIR__ . '/Autoload.php';
spl_autoload_register(callback: __NAMESPACE__ . '\Autoload::register');
|