Passed
Push — develop ( 5ee4e8...ef2c11 )
by BENARD
04:23
created
src/Model/Entity/Player/PlayerCommunicationDataTrait.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
      */
20 20
     protected ?string $twitch;
21 21
 
22
-      public function getWebsite(): ?string
22
+        public function getWebsite(): ?string
23 23
     {
24 24
         return $this->website;
25 25
     }
Please login to merge, or discard this patch.
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/Entity/Chart.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -279,7 +279,7 @@
 block discarded – undo
279 279
      * @param ArrayCollection|PlayerChart[] $playerCharts
280 280
      * @return Chart
281 281
      */
282
-    public function setPlayerCharts(array|ArrayCollection $playerCharts): self
282
+    public function setPlayerCharts(array | ArrayCollection $playerCharts): self
283 283
     {
284 284
         $this->playerCharts = $playerCharts;
285 285
 
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
@@ -154,7 +154,7 @@
 block discarded – undo
154 154
         $avatar = PictureCreatorFactory::fromStream($this->getAvatar($player));
155 155
         $gamercard->copyResized($avatar, 9, 30, 0, 0, 64, 64);
156 156
 
157
-        $playerGames = $this->playerGameRepository->findBy(['player' => $player], ['lastUpdate' => 'DESC'],5);
157
+        $playerGames = $this->playerGameRepository->findBy(['player' => $player], ['lastUpdate' => 'DESC'], 5);
158 158
 
159 159
         $startX = 9;
160 160
         foreach ($playerGames as $playerGame) {
Please login to merge, or discard this patch.