redScore = $redScore; $this->blueScore = $blueScore; $this->chat = $chat; $this->players = $players; $this->kills = $kills; } public function getRedScore(): int { return $this->redScore; } public function getBlueScore(): int { return $this->blueScore; } /** * @return ChatMessage[] */ public function getChat(): array { return $this->chat; } /** * @return ParsedPlayer[] */ public function getPlayers(): array { return $this->players; } /** * @return ParsedKill[] */ public function getKills(): array { return $this->kills; } }