oms-StockTaking/Admin/Uninstaller.php
Dennis Eichhorn 47e5ddb4ba init
2023-05-19 02:33:03 +00:00

37 lines
662 B
PHP

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