Skip to content

Commit fa93bb5

Browse files
committed
Fix indentation
1 parent b613a4f commit fa93bb5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

webapp/src/Service/DOMJudgeService.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1537,9 +1537,9 @@ public function getScoreboardZip(
15371537
* @return array{'backgroundColors', array<TeamCategory>}
15381538
*/
15391539
public function getDynamicCSS(): array {
1540-
$backgroundColors = array_map(fn($x) => ( $x->getColor() ?? '#FFFFFF' ), $this->em->getRepository(TeamCategory::class)->findAll());
1541-
$backgroundColors = array_merge($backgroundColors, ['#FFFF99']);
1542-
return ['backgroundColors' => $backgroundColors];
1540+
$backgroundColors = array_map(fn($x) => ( $x->getColor() ?? '#FFFFFF' ), $this->em->getRepository(TeamCategory::class)->findAll());
1541+
$backgroundColors = array_merge($backgroundColors, ['#FFFF99']);
1542+
return ['backgroundColors' => $backgroundColors];
15431543
}
15441544

15451545
private function allowJudge(ContestProblem $problem, Submission $submission, Language $language, bool $manualRequest): bool

0 commit comments

Comments
 (0)