diff options
Diffstat (limited to 'app/Module/RecentChangesModule.php')
| -rw-r--r-- | app/Module/RecentChangesModule.php | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/app/Module/RecentChangesModule.php b/app/Module/RecentChangesModule.php index 5881efb57a..97a4e4c0b6 100644 --- a/app/Module/RecentChangesModule.php +++ b/app/Module/RecentChangesModule.php @@ -38,14 +38,22 @@ class RecentChangesModule extends AbstractModule implements ModuleInterface, Mod private const DEFAULT_INFO_STYLE = 'table'; private const MAX_DAYS = 90; - /** {@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('Recent changes'); } - /** {@inheritdoc} */ + /** + * A sentence describing what this module does. + * + * @return string + */ public function description(): string { /* I18N: Description of the “Recent changes” module */ |
