phpcs, static and unit test fixes

This commit is contained in:
Dennis Eichhorn 2021-10-03 09:16:47 +02:00
parent f68baaceb8
commit 65a0d2cd70
3 changed files with 23 additions and 1 deletions

View File

@ -32,6 +32,14 @@ use phpOMS\Module\ModuleInfo;
*/
final class Installer extends InstallerAbstract
{
/**
* Path of the file
*
* @var string
* @since 1.0.0
*/
public const PATH = __DIR__;
/**
* {@inheritdoc}
*/

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__;
}