summaryrefslogtreecommitdiff
path: root/app/Module/DescendancyModule.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@webtrees.net>2018-08-18 22:28:35 +0100
committerGreg Roach <fisharebest@webtrees.net>2018-08-18 22:28:35 +0100
commitbbb76c12bd7338ebbb054916678efe20cb71ce1f (patch)
treed0954bc578030ab69fb0f6bf358ae9278d0453be /app/Module/DescendancyModule.php
parentfaffe0b0857786486c95615bb2beac0bed943f35 (diff)
downloadwebtrees-bbb76c12bd7338ebbb054916678efe20cb71ce1f.tar.gz
webtrees-bbb76c12bd7338ebbb054916678efe20cb71ce1f.tar.bz2
webtrees-bbb76c12bd7338ebbb054916678efe20cb71ce1f.zip
CodeStyle - comments should not be used in the middle of lines
Diffstat (limited to 'app/Module/DescendancyModule.php')
-rw-r--r--app/Module/DescendancyModule.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/Module/DescendancyModule.php b/app/Module/DescendancyModule.php
index 3181314a74..50a2faad93 100644
--- a/app/Module/DescendancyModule.php
+++ b/app/Module/DescendancyModule.php
@@ -32,15 +32,15 @@ class DescendancyModule extends AbstractModule implements ModuleSidebarInterface
/** {@inheritdoc} */
public function getTitle()
{
- return /* I18N: Name of a module/sidebar */
- I18N::translate('Descendants');
+ /* I18N: Name of a module/sidebar */
+ return I18N::translate('Descendants');
}
/** {@inheritdoc} */
public function getDescription()
{
- return /* I18N: Description of the “Descendants” module */
- I18N::translate('A sidebar showing the descendants of an individual.');
+ /* I18N: Description of the “Descendants” module */
+ return I18N::translate('A sidebar showing the descendants of an individual.');
}
/**