diff options
Diffstat (limited to 'app/Module/FactSourcesReportModule.php')
| -rw-r--r-- | app/Module/FactSourcesReportModule.php | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/app/Module/FactSourcesReportModule.php b/app/Module/FactSourcesReportModule.php index 969e3c3264..9e802783b4 100644 --- a/app/Module/FactSourcesReportModule.php +++ b/app/Module/FactSourcesReportModule.php @@ -32,7 +32,11 @@ class FactSourcesReportModule 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 FactSourcesReportModule extends AbstractModule implements ModuleInterface, return I18N::translate('Source'); } - /** {@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 |
