diff options
Diffstat (limited to 'app/Module/SlideShowModule.php')
| -rw-r--r-- | app/Module/SlideShowModule.php | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/app/Module/SlideShowModule.php b/app/Module/SlideShowModule.php index 70520f74a4..315ea36e7e 100644 --- a/app/Module/SlideShowModule.php +++ b/app/Module/SlideShowModule.php @@ -34,14 +34,22 @@ class SlideShowModule extends AbstractModule implements ModuleInterface, ModuleB { 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('Slide show'); } - /** {@inheritdoc} */ + /** + * A sentence describing what this module does. + * + * @return string + */ public function description(): string { /* I18N: Description of the “Slide show” module */ |
