mirror of
https://github.com/Karaka-Management/oms-WarehouseManagement.git
synced 2026-01-11 15:18:41 +00:00
30 lines
567 B
PHP
Executable File
30 lines
567 B
PHP
Executable File
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 8.0
|
|
*
|
|
* @package Modules\WarehouseManagement\Admin
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://orange-management.org
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace Modules\WarehouseManagement\Admin;
|
|
|
|
use phpOMS\Module\UninstallerAbstract;
|
|
|
|
/**
|
|
* Uninstaller class.
|
|
*
|
|
* @package Modules\WarehouseManagement\Admin
|
|
* @license OMS License 1.0
|
|
* @link https://orange-management.org
|
|
* @since 1.0.0
|
|
*/
|
|
final class Uninstaller extends UninstallerAbstract
|
|
{
|
|
}
|