diff options
Diffstat (limited to 'app/Module/DescendancyModule.php')
| -rw-r--r-- | app/Module/DescendancyModule.php | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/app/Module/DescendancyModule.php b/app/Module/DescendancyModule.php index bc330dcff6..f37a54f804 100644 --- a/app/Module/DescendancyModule.php +++ b/app/Module/DescendancyModule.php @@ -33,14 +33,22 @@ class DescendancyModule extends AbstractModule implements ModuleInterface, Modul { use ModuleSidebarTrait; - /** {@inheritdoc} */ + /** + * How should this module be labelled on tabs, menus, etc.? + * + * @return string + */ public function title(): string { /* I18N: Name of a module/sidebar */ return I18N::translate('Descendants'); } - /** {@inheritdoc} */ + /** + * A sentence describing what this module does. + * + * @return string + */ public function description(): string { /* I18N: Description of the “Descendants” module */ |
