From a3f6898e66049f2991b63be886161480844634bf Mon Sep 17 00:00:00 2001 From: Jaap Eldering Date: Thu, 5 Dec 2024 23:16:25 +0100 Subject: [PATCH] Apply suggestions from code review Co-authored-by: MCJ Vasseur <14887731+vmcj@users.noreply.github.com> --- webapp/src/Service/ConfigurationService.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webapp/src/Service/ConfigurationService.php b/webapp/src/Service/ConfigurationService.php index a06e68158d..a5c6c92ab2 100644 --- a/webapp/src/Service/ConfigurationService.php +++ b/webapp/src/Service/ConfigurationService.php @@ -418,8 +418,8 @@ public function getVerdicts(array $groups = ['final']): array $verdictGroups = include $verdictsConfig; $verdicts = []; - foreach( $groups as $group ) { - if ( $group === 'external' ) { + foreach ($groups as $group) { + if ($group === 'external') { foreach ($this->get('external_judgement_types') as $id => $name) { $verdicts[$name] = $id; }