We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -279,7 +279,7 @@ |
||
279 | 279 | if (!isset($this->goodDistances[$goodID])) { |
280 | 280 | $x = Globals::getGood($goodID); |
281 | 281 | // Calculate distance to the opposite of the offered transaction |
282 | - $x['TransactionType'] = match ($this->getGoodTransaction($goodID)) { |
|
282 | + $x['TransactionType'] = match($this->getGoodTransaction($goodID)) { |
|
283 | 283 | TRADER_BUYS => TRADER_SELLS, |
284 | 284 | TRADER_SELLS => TRADER_BUYS, |
285 | 285 | }; |
@@ -870,9 +870,9 @@ |
||
870 | 870 | */ |
871 | 871 | public function canFight(): bool { |
872 | 872 | return !($this->hasNewbieTurns() || |
873 | - $this->isDead() || |
|
874 | - $this->isLandedOnPlanet() || |
|
875 | - $this->hasFederalProtection()); |
|
873 | + $this->isDead() || |
|
874 | + $this->isLandedOnPlanet() || |
|
875 | + $this->hasFederalProtection()); |
|
876 | 876 | } |
877 | 877 | |
878 | 878 | public function setDead(bool $bool): void { |
@@ -610,7 +610,7 @@ discard block |
||
610 | 610 | } |
611 | 611 | |
612 | 612 | public function getScoutMessageGroupLimit(): int { |
613 | - return match ($this->groupScoutMessages) { |
|
613 | + return match($this->groupScoutMessages) { |
|
614 | 614 | 'ALWAYS' => 0, |
615 | 615 | 'AUTO' => MESSAGES_PER_PAGE, |
616 | 616 | 'NEVER' => PHP_INT_MAX, |
@@ -727,7 +727,7 @@ discard block |
||
727 | 727 | |
728 | 728 | // If expires not specified, use default based on message type |
729 | 729 | if ($expires === null) { |
730 | - $expires = match ($messageTypeID) { |
|
730 | + $expires = match($messageTypeID) { |
|
731 | 731 | MSG_GLOBAL => 3600, // 1h |
732 | 732 | MSG_PLAYER => 86400 * 31, // 1 month |
733 | 733 | MSG_PLANET => 86400 * 7, // 1 week |
@@ -1677,7 +1677,7 @@ discard block |
||
1677 | 1677 | throw new Smr\Exceptions\UserError('The saved sector must be in the box!'); |
1678 | 1678 | } |
1679 | 1679 | |
1680 | - $storedDestinations =& $this->getStoredDestinations(); |
|
1680 | + $storedDestinations = & $this->getStoredDestinations(); |
|
1681 | 1681 | foreach ($storedDestinations as &$sd) { |
1682 | 1682 | if ($sd['SectorID'] == $sectorID) { |
1683 | 1683 | $sd['OffsetTop'] = $offsetTop; |
@@ -1841,7 +1841,7 @@ discard block |
||
1841 | 1841 | public function getClaimableBounties(string $type = null): array { |
1842 | 1842 | $bounties = []; |
1843 | 1843 | $query = 'SELECT * FROM bounty WHERE claimer_id=' . $this->db->escapeNumber($this->getAccountID()) . ' AND game_id=' . $this->db->escapeNumber($this->getGameID()); |
1844 | - $query .= match ($type) { |
|
1844 | + $query .= match($type) { |
|
1845 | 1845 | 'HQ', 'UG' => ' AND type=' . $this->db->escapeString($type), |
1846 | 1846 | null => '', |
1847 | 1847 | }; |
@@ -2008,13 +2008,13 @@ discard block |
||
2008 | 2008 | $dbResult = $this->db->read('SELECT type,amount FROM player_hof WHERE ' . $this->SQL); |
2009 | 2009 | $this->HOF = []; |
2010 | 2010 | foreach ($dbResult->records() as $dbRecord) { |
2011 | - $hof =& $this->HOF; |
|
2011 | + $hof = & $this->HOF; |
|
2012 | 2012 | $typeList = explode(':', $dbRecord->getString('type')); |
2013 | 2013 | foreach ($typeList as $type) { |
2014 | 2014 | if (!isset($hof[$type])) { |
2015 | 2015 | $hof[$type] = []; |
2016 | 2016 | } |
2017 | - $hof =& $hof[$type]; |
|
2017 | + $hof = & $hof[$type]; |
|
2018 | 2018 | } |
2019 | 2019 | $hof = $dbRecord->getFloat('amount'); |
2020 | 2020 | } |
@@ -2093,8 +2093,8 @@ discard block |
||
2093 | 2093 | } |
2094 | 2094 | self::$HOFVis[$hofType] = $visibility; |
2095 | 2095 | |
2096 | - $hof =& $this->HOF; |
|
2097 | - $hofChanged =& $this->hasHOFChanged; |
|
2096 | + $hof = & $this->HOF; |
|
2097 | + $hofChanged = & $this->hasHOFChanged; |
|
2098 | 2098 | $new = false; |
2099 | 2099 | foreach ($typeList as $type) { |
2100 | 2100 | if (!isset($hofChanged[$type])) { |
@@ -2104,8 +2104,8 @@ discard block |
||
2104 | 2104 | $hof[$type] = []; |
2105 | 2105 | $new = true; |
2106 | 2106 | } |
2107 | - $hof =& $hof[$type]; |
|
2108 | - $hofChanged =& $hofChanged[$type]; |
|
2107 | + $hof = & $hof[$type]; |
|
2108 | + $hofChanged = & $hofChanged[$type]; |
|
2109 | 2109 | } |
2110 | 2110 | if ($hofChanged == null) { |
2111 | 2111 | $hofChanged = self::HOF_CHANGED; |
@@ -2496,7 +2496,7 @@ discard block |
||
2496 | 2496 | * Returns the CSS class color to use when displaying the player's turns |
2497 | 2497 | */ |
2498 | 2498 | public function getTurnsColor(): string { |
2499 | - return match ($this->getTurnsLevel()) { |
|
2499 | + return match($this->getTurnsLevel()) { |
|
2500 | 2500 | 'NONE', 'LOW' => 'red', |
2501 | 2501 | 'MEDIUM' => 'yellow', |
2502 | 2502 | 'HIGH' => 'green', |
@@ -2771,7 +2771,7 @@ discard block |
||
2771 | 2771 | 'Starting Sector' => $this->getSectorID(), |
2772 | 2772 | ]; |
2773 | 2773 | |
2774 | - $this->missions[$missionID] =& $mission; |
|
2774 | + $this->missions[$missionID] = & $mission; |
|
2775 | 2775 | $this->setupMissionStep($missionID); |
2776 | 2776 | $this->rebuildMission($missionID); |
2777 | 2777 | |
@@ -2820,7 +2820,7 @@ discard block |
||
2820 | 2820 | |
2821 | 2821 | public function claimMissionReward(int $missionID): string { |
2822 | 2822 | $this->getMissions(); |
2823 | - $mission =& $this->missions[$missionID]; |
|
2823 | + $mission = & $this->missions[$missionID]; |
|
2824 | 2824 | if ($mission === false) { |
2825 | 2825 | throw new Exception('Unknown mission: ' . $missionID); |
2826 | 2826 | } |
@@ -393,13 +393,13 @@ |
||
393 | 393 | $dbResult = $this->db->read('SELECT type,sum(amount) as amount FROM player_hof WHERE ' . $this->SQL . ' AND game_id IN (SELECT game_id FROM game WHERE ignore_stats = \'FALSE\') GROUP BY type'); |
394 | 394 | $this->HOF = []; |
395 | 395 | foreach ($dbResult->records() as $dbRecord) { |
396 | - $hof =& $this->HOF; |
|
396 | + $hof = & $this->HOF; |
|
397 | 397 | $typeList = explode(':', $dbRecord->getString('type')); |
398 | 398 | foreach ($typeList as $type) { |
399 | 399 | if (!isset($hof[$type])) { |
400 | 400 | $hof[$type] = []; |
401 | 401 | } |
402 | - $hof =& $hof[$type]; |
|
402 | + $hof = & $hof[$type]; |
|
403 | 403 | } |
404 | 404 | $hof = $dbRecord->getFloat('amount'); |
405 | 405 | } |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | * Not intended to be used outside the DI context. |
27 | 27 | */ |
28 | 28 | public static function mysqliFactory(DatabaseProperties $dbProperties): mysqli { |
29 | - if (!mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT)) { |
|
29 | + if (!mysqli_report(MYSQLI_REPORT_ERROR|MYSQLI_REPORT_STRICT)) { |
|
30 | 30 | throw new RuntimeException('Failed to enable mysqli error reporting'); |
31 | 31 | } |
32 | 32 | $mysql = new mysqli( |
@@ -168,7 +168,7 @@ discard block |
||
168 | 168 | } |
169 | 169 | |
170 | 170 | public function escape(mixed $escape): mixed { |
171 | - return match (true) { |
|
171 | + return match(true) { |
|
172 | 172 | is_bool($escape) => $this->escapeBoolean($escape), |
173 | 173 | is_numeric($escape) => $this->escapeNumber($escape), |
174 | 174 | is_string($escape) => $this->escapeString($escape), |
@@ -59,7 +59,7 @@ |
||
59 | 59 | if (!empty($accountID)) { |
60 | 60 | $return = SmrPlayer::getPlayer($accountID, $gameID); |
61 | 61 | } else { |
62 | - $return = match ($messageType) { |
|
62 | + $return = match($messageType) { |
|
63 | 63 | MSG_ADMIN => '<span class="admin">Administrator</span>', |
64 | 64 | MSG_ALLIANCE => '<span class="green">Alliance Ambassador</span>', |
65 | 65 | default => 'Unknown', |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | * Return the card's blackjack value. |
36 | 36 | */ |
37 | 37 | public function getValue(): int { |
38 | - return match ($this->rank) { |
|
38 | + return match($this->rank) { |
|
39 | 39 | self::RANK_ACE => 11, |
40 | 40 | self::RANK_JACK, self::RANK_QUEEN, self::RANK_KING => 10, |
41 | 41 | // For normal pip (non-face) cards, value and rank are the same. |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | * Returns the rank name of this card (of the 13 ranks). |
58 | 58 | */ |
59 | 59 | public function getRankName(): string { |
60 | - return match ($this->rank) { |
|
60 | + return match($this->rank) { |
|
61 | 61 | self::RANK_ACE => 'A', |
62 | 62 | self::RANK_JACK => 'J', |
63 | 63 | self::RANK_QUEEN => 'Q', |
@@ -67,9 +67,9 @@ |
||
67 | 67 | $session = Session::getInstance(); |
68 | 68 | $account = $session->getAccount(); |
69 | 69 | if (($vis == HOF_PRIVATE && $account->getAccountID() != $accountID) || |
70 | - ($vis == HOF_ALLIANCE && isset($gameID) && |
|
71 | - !SmrGame::getGame($gameID)->hasEnded() && |
|
72 | - !SmrPlayer::getPlayer($accountID, $gameID)->sameAlliance($session->getPlayer()))) { |
|
70 | + ($vis == HOF_ALLIANCE && isset($gameID) && |
|
71 | + !SmrGame::getGame($gameID)->hasEnded() && |
|
72 | + !SmrPlayer::getPlayer($accountID, $gameID)->sameAlliance($session->getPlayer()))) { |
|
73 | 73 | return '-'; |
74 | 74 | } else { |
75 | 75 | return $amount; |
@@ -208,7 +208,7 @@ discard block |
||
208 | 208 | } |
209 | 209 | |
210 | 210 | public static function getLetterForPiece(int $pieceID, string $colour): string { |
211 | - $letter = match ($pieceID) { |
|
211 | + $letter = match($pieceID) { |
|
212 | 212 | self::KING => 'k', |
213 | 213 | self::QUEEN => 'q', |
214 | 214 | self::ROOK => 'r', |
@@ -223,7 +223,7 @@ discard block |
||
223 | 223 | } |
224 | 224 | |
225 | 225 | public static function getPieceForLetter(string $letter): int { |
226 | - return match (strtolower($letter)) { |
|
226 | + return match(strtolower($letter)) { |
|
227 | 227 | 'k' => self::KING, |
228 | 228 | 'q' => self::QUEEN, |
229 | 229 | 'r' => self::ROOK, |
@@ -266,7 +266,7 @@ discard block |
||
266 | 266 | $blanks = 0; |
267 | 267 | } |
268 | 268 | } |
269 | - $fen .= match ($this->getCurrentTurnColour()) { |
|
269 | + $fen .= match($this->getCurrentTurnColour()) { |
|
270 | 270 | self::PLAYER_WHITE => ' w ', |
271 | 271 | self::PLAYER_BLACK => ' b ', |
272 | 272 | }; |
@@ -296,7 +296,7 @@ discard block |
||
296 | 296 | |
297 | 297 | if ($this->hasMoved[ChessPiece::PAWN][0] != -1) { |
298 | 298 | $fen .= chr(ord('a') + $this->hasMoved[ChessPiece::PAWN][0]); |
299 | - $fen .= match ($this->hasMoved[ChessPiece::PAWN][1]) { |
|
299 | + $fen .= match($this->hasMoved[ChessPiece::PAWN][1]) { |
|
300 | 300 | 3 => '6', |
301 | 301 | 4 => '3', |
302 | 302 | }; |
@@ -464,7 +464,7 @@ discard block |
||
464 | 464 | |
465 | 465 | public static function isCastling(int $x, int $toX): array|false { |
466 | 466 | $movement = $toX - $x; |
467 | - return match ($movement) { |
|
467 | + return match($movement) { |
|
468 | 468 | -2 => ['Type' => 'Queen', 'X' => 0, 'ToX' => 3], |
469 | 469 | 2 => ['Type' => 'King', 'X' => 7, 'ToX' => 5], |
470 | 470 | default => false, |
@@ -772,7 +772,7 @@ discard block |
||
772 | 772 | } |
773 | 773 | |
774 | 774 | public function getColourID(string $colour): int { |
775 | - return match ($colour) { |
|
775 | + return match($colour) { |
|
776 | 776 | self::PLAYER_WHITE => $this->getWhiteID(), |
777 | 777 | self::PLAYER_BLACK => $this->getBlackID(), |
778 | 778 | }; |
@@ -783,7 +783,7 @@ discard block |
||
783 | 783 | } |
784 | 784 | |
785 | 785 | public function getColourForAccountID(int $accountID): string { |
786 | - return match ($accountID) { |
|
786 | + return match($accountID) { |
|
787 | 787 | $this->getWhiteID() => self::PLAYER_WHITE, |
788 | 788 | $this->getBlackID() => self::PLAYER_BLACK, |
789 | 789 | }; |
@@ -860,7 +860,7 @@ discard block |
||
860 | 860 | } |
861 | 861 | |
862 | 862 | public static function getOtherColour(string $colour): string { |
863 | - return match ($colour) { |
|
863 | + return match($colour) { |
|
864 | 864 | self::PLAYER_WHITE => self::PLAYER_BLACK, |
865 | 865 | self::PLAYER_BLACK => self::PLAYER_WHITE, |
866 | 866 | }; |