From 5056373778a114d8202a6b09b0d46b3ad047d485 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20FRANCE?= Date: Fri, 21 Apr 2023 16:01:34 +0200 Subject: [PATCH] fix phpcs --- htdocs/admin/modulehelp.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/admin/modulehelp.php b/htdocs/admin/modulehelp.php index ecbe14e76f4..05b76c9d6d5 100644 --- a/htdocs/admin/modulehelp.php +++ b/htdocs/admin/modulehelp.php @@ -371,7 +371,7 @@ if ($mode == 'feature') { $text .= '
'.$langs->trans("DependsOn").': '; if (is_array($objMod->depends) && count($objMod->depends)) { $i = 0; - foreach($objMod->depends as $modulestringorarray) { + foreach ($objMod->depends as $modulestringorarray) { if (is_array($modulestringorarray)) { $text .= ($i ? ', ' : '').join(', ', $modulestringorarray); } else { @@ -387,7 +387,7 @@ if ($mode == 'feature') { $text .= '
'.$langs->trans("RequiredBy").': '; if (is_array($objMod->requiredby) && count($objMod->requiredby)) { $i = 0; - foreach($objMod->requiredby as $modulestringorarray) { + foreach ($objMod->requiredby as $modulestringorarray) { if (is_array($modulestringorarray)) { $text .= ($i ? ', ' : '').join(', ', $modulestringorarray); } else {