diff options
Diffstat (limited to 'app/Module/LoggedInUsersModule.php')
| -rw-r--r-- | app/Module/LoggedInUsersModule.php | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/app/Module/LoggedInUsersModule.php b/app/Module/LoggedInUsersModule.php index 508514f4f6..582649d1c0 100644 --- a/app/Module/LoggedInUsersModule.php +++ b/app/Module/LoggedInUsersModule.php @@ -31,14 +31,22 @@ class LoggedInUsersModule extends AbstractModule implements ModuleInterface, Mod { use ModuleBlockTrait; - /** {@inheritdoc} */ + /** + * How should this module be labelled on tabs, menus, etc.? + * + * @return string + */ public function title(): string { /* I18N: Name of a module. (A list of users who are online now) */ return I18N::translate('Who is online'); } - /** {@inheritdoc} */ + /** + * A sentence describing what this module does. + * + * @return string + */ public function description(): string { /* I18N: Description of the “Who is online” module */ |
