phpOMS/Utils/Excel/Excel.php

32 lines
629 B
PHP

<?php
/**
* Orange Management
*
* PHP Version 7.4
*
* @package phpOMS\Utils\Excel
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
namespace phpOMS\Utils\Excel;
/** @noinspection PhpIncludeInspection */
require_once \realpath(__DIR__ . '/../../../Resources/phpexcel/Classes/PHPExcel.php');
/**
* Excel class.
*
* @package phpOMS\Utils\Excel
* @license OMS License 1.0
* @link https://orange-management.org
* @since 1.0.0
* @noinspection PhpUndefinedClassInspection
*/
class Excel extends \PHPExcel
{
}