oms-QualityControl/Admin/Status.php
Dennis Eichhorn e6a0a151c6 update
2023-10-09 22:06:39 +00:00

37 lines
618 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://jingga.app
*/
declare(strict_types=1);
namespace Modules\QualityControl\Admin;
use phpOMS\Module\StatusAbstract;
/**
* Status class.
*
* @package Modules\QualityControl\Admin
* @license OMS License 2.0
* @link https://jingga.app
* @since 1.0.0
*/
final class Status extends StatusAbstract
{
/**
* Path of the file
*
* @var string
* @since 1.0.0
*/
public const PATH = __DIR__;
}