oms-MyPrivate/Controller.php

102 lines
1.7 KiB
PHP

<?php
/**
* Orange Management
*
* PHP Version 7.2
*
* @package Modules\MyPrivate
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link http://website.orange-management.de
*/
declare(strict_types=1);
namespace Modules\MyPrivate;
use phpOMS\Message\RequestAbstract;
use phpOMS\Message\ResponseAbstract;
use phpOMS\Module\ModuleAbstract;
use phpOMS\Module\WebInterface;
/**
* Navigation class.
*
* @package Modules\MyPrivate
* @license OMS License 1.0
* @link http://website.orange-management.de
* @since 1.0.0
*/
final class Controller extends ModuleAbstract implements WebInterface
{
/**
* Module path.
*
* @var string
* @since 1.0.0
*/
public const MODULE_PATH = __DIR__;
/**
* Module version.
*
* @var string
* @since 1.0.0
*/
public const MODULE_VERSION = '1.0.0';
/**
* Module name.
*
* @var string
* @since 1.0.0
*/
public const MODULE_NAME = 'MyPrivate';
/**
* Module id.
*
* @var int
* @since 1.0.0
*/
public const MODULE_ID = 1003400000;
/**
* Providing.
*
* @var string[]
* @since 1.0.0
*/
protected static $providing = [
];
/**
* Dependencies.
*
* @var string[]
* @since 1.0.0
*/
protected static $dependencies = [
];
/**
* Constructor.
*
* @param \Web\WebApplication $app Application
*
* @since 1.0.0
*/
public function __construct($app)
{
parent::__construct($app);
}
/**
* {@inheritdoc}
*/
public function call(RequestAbstract $request, ResponseAbstract $response, $data = null) : void
{
}
}