diff options
Diffstat (limited to 'app/Module/CalendarMenuModule.php')
| -rw-r--r-- | app/Module/CalendarMenuModule.php | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/app/Module/CalendarMenuModule.php b/app/Module/CalendarMenuModule.php index c163bc7a7f..84d60d9751 100644 --- a/app/Module/CalendarMenuModule.php +++ b/app/Module/CalendarMenuModule.php @@ -28,14 +28,22 @@ class CalendarMenuModule extends AbstractModule implements ModuleInterface, Modu { use ModuleMenuTrait; - /** {@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('Calendar'); } - /** {@inheritdoc} */ + /** + * A sentence describing what this module does. + * + * @return string + */ public function description(): string { /* I18N: Description of the “Reports” module */ |
