mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 09:48:40 +00:00
49 lines
780 B
PHP
49 lines
780 B
PHP
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.4
|
|
*
|
|
* @package phpOMS
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://orange-management.org
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace phpOMS\Application;
|
|
|
|
/**
|
|
* Application manager class.
|
|
*
|
|
* General application managing functionality.
|
|
*
|
|
* @package phpOMS
|
|
* @license OMS License 1.0
|
|
* @link https://orange-management.org
|
|
* @since 1.0.0
|
|
*/
|
|
final class ApplicationManager
|
|
{
|
|
public function install(string $source, string $destination) : void
|
|
{
|
|
|
|
}
|
|
|
|
public function installModules() : void
|
|
{
|
|
|
|
}
|
|
|
|
public function installConfig() : void
|
|
{
|
|
|
|
}
|
|
|
|
public function update(string $source, string $destination) : void
|
|
{
|
|
|
|
}
|
|
}
|