diff options
Diffstat (limited to 'app/Module/TopGivenNamesModule.php')
| -rw-r--r-- | app/Module/TopGivenNamesModule.php | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/app/Module/TopGivenNamesModule.php b/app/Module/TopGivenNamesModule.php index a00bb05952..cfe51ba5ed 100644 --- a/app/Module/TopGivenNamesModule.php +++ b/app/Module/TopGivenNamesModule.php @@ -34,14 +34,22 @@ class TopGivenNamesModule extends AbstractModule implements ModuleInterface, Mod private const DEFAULT_NUMBER = '10'; private const DEFAULT_STYLE = 'table'; - /** {@inheritdoc} */ + /** + * How should this module be labelled on tabs, menus, etc.? + * + * @return string + */ public function title(): string { /* I18N: Name of a module. Top=Most common */ return I18N::translate('Top given names'); } - /** {@inheritdoc} */ + /** + * A sentence describing what this module does. + * + * @return string + */ public function description(): string { /* I18N: Description of the “Top given names” module */ |
