diff options
Diffstat (limited to 'app/Module/FamilyTreeStatisticsModule.php')
| -rw-r--r-- | app/Module/FamilyTreeStatisticsModule.php | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/app/Module/FamilyTreeStatisticsModule.php b/app/Module/FamilyTreeStatisticsModule.php index f5350c453e..f1dd638f37 100644 --- a/app/Module/FamilyTreeStatisticsModule.php +++ b/app/Module/FamilyTreeStatisticsModule.php @@ -35,14 +35,22 @@ class FamilyTreeStatisticsModule extends AbstractModule implements ModuleInterfa /** Show this number of surnames by default */ private const DEFAULT_NUMBER_OF_SURNAMES = '10'; - /** {@inheritdoc} */ + /** + * How should this module be labelled on tabs, menus, etc.? + * + * @return string + */ public function title(): string { /* I18N: Name of a module */ return I18N::translate('Statistics'); } - /** {@inheritdoc} */ + /** + * A sentence describing what this module does. + * + * @return string + */ public function description(): string { /* I18N: Description of “Statistics” module */ |
