diff options
Diffstat (limited to 'app/Module/ChartsBlockModule.php')
| -rw-r--r-- | app/Module/ChartsBlockModule.php | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/app/Module/ChartsBlockModule.php b/app/Module/ChartsBlockModule.php index 2b58cdbba2..3bc02ea19f 100644 --- a/app/Module/ChartsBlockModule.php +++ b/app/Module/ChartsBlockModule.php @@ -32,14 +32,22 @@ class ChartsBlockModule extends AbstractModule implements ModuleInterface, Modul { use ModuleBlockTrait; - /** {@inheritdoc} */ + /** + * How should this module be labelled on tabs, menus, etc.? + * + * @return string + */ public function title(): string { /* I18N: Name of a module/block */ return I18N::translate('Charts'); } - /** {@inheritdoc} */ + /** + * A sentence describing what this module does. + * + * @return string + */ public function description(): string { /* I18N: Description of the “Charts” module */ |
