phpcs, static and unit test fixes

This commit is contained in:
Dennis Eichhorn 2021-10-03 09:16:46 +02:00
parent b5028873bc
commit 67ada61771
4 changed files with 33 additions and 2 deletions

View File

@ -1,5 +1,15 @@
<?php
/**
* Orange Management
*
* PHP Version 8.0
*
* @package Modules\Accounting\Admin\Install
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
return [

View File

@ -26,4 +26,11 @@ use phpOMS\Module\InstallerAbstract;
*/
final class Installer extends InstallerAbstract
{
/**
* Path of the file
*
* @var string
* @since 1.0.0
*/
public const PATH = __DIR__;
}

View File

@ -26,4 +26,11 @@ use phpOMS\Module\StatusAbstract;
*/
final class Status extends StatusAbstract
{
/**
* Path of the file
*
* @var string
* @since 1.0.0
*/
public const PATH = __DIR__;
}

View File

@ -24,6 +24,13 @@ use phpOMS\Module\UninstallerAbstract;
* @link https://orange-management.org
* @since 1.0.0
*/
final class Uninstaller extends UninstallerAbstract
final class Installer extends InstallerAbstract
{
/**
* Path of the file
*
* @var string
* @since 1.0.0
*/
public const PATH = __DIR__;
}