@@ -19,7 +19,7 @@ |
||
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 | } |
@@ -15,7 +15,8 @@ |
||
15 | 15 | |
16 | 16 | public function __construct( |
17 | 17 | private readonly UpdateChartStatusHandler $updateChartStatusHandler |
18 | - ) {} |
|
18 | + ) { |
|
19 | +} |
|
19 | 20 | |
20 | 21 | |
21 | 22 | /** |
@@ -279,7 +279,7 @@ |
||
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 |
@@ -162,7 +162,7 @@ |
||
162 | 162 | $avatar = $this->streamPictureCreator->createPicture($this->getAvatar($player)); |
163 | 163 | $gamercard->copyResized($avatar, 9, 30, 0, 0, 64, 64); |
164 | 164 | |
165 | - $playerGames = $this->playerGameRepository->findBy(['player' => $player], ['lastUpdate' => 'DESC'],5); |
|
165 | + $playerGames = $this->playerGameRepository->findBy(['player' => $player], ['lastUpdate' => 'DESC'], 5); |
|
166 | 166 | |
167 | 167 | $startX = 9; |
168 | 168 | foreach ($playerGames as $playerGame) { |