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