Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
17 | public function __construct($gameDetails) |
||
18 | { |
||
19 | $gameId = $this->checkIssetField($gameDetails, 'gameid'); |
||
20 | |||
21 | $this->serverIp = $this->checkIssetField($gameDetails, 'gameserverip'); |
||
22 | $this->serverSteamId = $this->checkIssetField($gameDetails, 'gameserversteamid'); |
||
23 | $this->extraInfo = $this->checkIssetField($gameDetails, 'gameextrainfo'); |
||
24 | $this->lobbyId = $this->checkIssetField($gameDetails, 'lobbysteamid'); |
||
25 | $this->gameId = is_null($gameId) ? null : (int)$gameId; |
||
26 | } |
||
27 | } |
||
28 |