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