diff options
Diffstat (limited to 'app/Module/PlacesModule.php')
| -rw-r--r-- | app/Module/PlacesModule.php | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/app/Module/PlacesModule.php b/app/Module/PlacesModule.php index 68e24c264f..2e301ded5a 100644 --- a/app/Module/PlacesModule.php +++ b/app/Module/PlacesModule.php @@ -38,14 +38,22 @@ class PlacesModule extends AbstractModule implements ModuleInterface, ModuleTabI private static $map_providers = null; private static $map_selections = null; - /** {@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('Places'); } - /** {@inheritdoc} */ + /** + * A sentence describing what this module does. + * + * @return string + */ public function description(): string { /* I18N: Description of the “OSM” module */ |
