diff options
Diffstat (limited to 'app/Module/BirthReportModule.php')
| -rw-r--r-- | app/Module/BirthReportModule.php | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/app/Module/BirthReportModule.php b/app/Module/BirthReportModule.php index bb3ddf6364..7c7d96b9bd 100644 --- a/app/Module/BirthReportModule.php +++ b/app/Module/BirthReportModule.php @@ -28,7 +28,11 @@ class BirthReportModule extends AbstractModule implements ModuleInterface, Modul { use ModuleReportTrait; - /** {@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 @@ -36,7 +40,11 @@ class BirthReportModule extends AbstractModule implements ModuleInterface, Modul return I18N::translate('Births'); } - /** {@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 |
