summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/Module/ModuleCustomTrait.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/Module/ModuleCustomTrait.php b/app/Module/ModuleCustomTrait.php
index 5780e2548a..929a372684 100644
--- a/app/Module/ModuleCustomTrait.php
+++ b/app/Module/ModuleCustomTrait.php
@@ -29,17 +29,17 @@ trait ModuleCustomTrait
*/
public function customModuleAuthorName(): string
{
- return 'Unknown author';
+ return '';
}
/**
* The version of this module.
*
- * @return string
+ * @return string e.g. '1.2.3'
*/
public function customModuleVersion(): string
{
- return '0.0.0';
+ return '';
}
/**
@@ -49,7 +49,7 @@ trait ModuleCustomTrait
*/
public function customModuleLatestVersionUrl(): string
{
- return 'https://www.exmaple.com/latest-version';
+ return '';
}
/**
@@ -59,6 +59,6 @@ trait ModuleCustomTrait
*/
public function customModuleSupportUrl(): string
{
- return 'https://www.exmaple.com/support';
+ return '';
}
}