diff options
Diffstat (limited to 'app/Module/ReviewChangesModule.php')
| -rw-r--r-- | app/Module/ReviewChangesModule.php | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/app/Module/ReviewChangesModule.php b/app/Module/ReviewChangesModule.php index 3fb0d2726d..dd04c64902 100644 --- a/app/Module/ReviewChangesModule.php +++ b/app/Module/ReviewChangesModule.php @@ -35,14 +35,22 @@ class ReviewChangesModule 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 */ return I18N::translate('Pending changes'); } - /** {@inheritdoc} */ + /** + * A sentence describing what this module does. + * + * @return string + */ public function description(): string { /* I18N: Description of the “Pending changes” module */ |
