Passed
Push — develop ( faff8c...991f98 )
by BENARD
04:13
created
src/EventListener/Entity/PlayerListener.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,8 @@
 block discarded – undo
15 15
 
16 16
     public function __construct(
17 17
         private readonly UpdateChartStatusHandler $updateChartStatusHandler
18
-    ) {}
18
+    ) {
19
+}
19 20
 
20 21
 
21 22
     /**
Please login to merge, or discard this patch.
src/Controller/GamercardController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -150,7 +150,7 @@
 block discarded – undo
150 150
         $avatar = Picture::loadFileFromStream($this->getAvatar($player));
151 151
         $gamercard->copyResized($avatar, 9, 30, 0, 0, 64, 64);
152 152
 
153
-        $playerGames = $this->playerGameRepository->findBy(['player' => $player], ['lastUpdate' => 'DESC'],5);
153
+        $playerGames = $this->playerGameRepository->findBy(['player' => $player], ['lastUpdate' => 'DESC'], 5);
154 154
 
155 155
         $startX = 9;
156 156
         foreach ($playerGames as $playerGame) {
Please login to merge, or discard this patch.