diff options
Diffstat (limited to 'app/Module/MissingFactsReportModule.php')
| -rw-r--r-- | app/Module/MissingFactsReportModule.php | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/app/Module/MissingFactsReportModule.php b/app/Module/MissingFactsReportModule.php index ca80bcabc9..e3b9411450 100644 --- a/app/Module/MissingFactsReportModule.php +++ b/app/Module/MissingFactsReportModule.php @@ -32,7 +32,11 @@ class MissingFactsReportModule extends AbstractModule implements ModuleInterface /** @var int The default access level for this module. It can be changed in the control panel. */ protected $access_level = Auth::PRIV_USER; - /** {@inheritdoc} */ + /** + * How should this module be labelled on tabs, menus, etc.? + * + * @return string + */ public function title(): string { // This text also appears in the .XML file - update both together @@ -40,7 +44,11 @@ class MissingFactsReportModule extends AbstractModule implements ModuleInterface return I18N::translate('Missing data'); } - /** {@inheritdoc} */ + /** + * A sentence describing what this module does. + * + * @return string + */ public function description(): string { // This text also appears in the .XML file - update both together |
