diff options
Diffstat (limited to 'app/Module/NotesTabModule.php')
| -rw-r--r-- | app/Module/NotesTabModule.php | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/app/Module/NotesTabModule.php b/app/Module/NotesTabModule.php index 04f1a3c9a0..b71bead6c6 100644 --- a/app/Module/NotesTabModule.php +++ b/app/Module/NotesTabModule.php @@ -32,14 +32,22 @@ class NotesTabModule extends AbstractModule implements ModuleInterface, ModuleTa /** @var Fact[] A list facts for this note. */ private $facts; - /** {@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('Notes'); } - /** {@inheritdoc} */ + /** + * A sentence describing what this module does. + * + * @return string + */ public function description(): string { /* I18N: Description of the “Notes” module */ |
