mirror of
https://github.com/Karaka-Management/oms-StockTaking.git
synced 2026-01-11 10:38:39 +00:00
37 lines
662 B
PHP
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__;
|
|
}
|