oms-QualityControl/Admin/Installer.php
Dennis Eichhorn 1d3fd8c2d7 fix tests
2023-09-25 15:14:06 +00:00

37 lines
652 B
PHP

<?php
/**
* Jingga
*
* PHP Version 8.1
*
* @package Modules\QualityControl\Admin
* @copyright Dennis Eichhorn
* @license OMS License 2.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
namespace Modules\QualityControl\Admin;
use phpOMS\Module\InstallerAbstract;
/**
* Installer class.
*
* @package Modules\QualityControl\Admin
* @license OMS License 2.0
* @link https://orange-management.org
* @since 1.0.0
*/
final class Installer extends InstallerAbstract
{
/**
* Path of the file
*
* @var string
* @since 1.0.0
*/
public const PATH = __DIR__;
}