We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | $menuItems[] = array('Link'=>Globals::getPlanetListHREF($alliance_id), 'Text'=>'Defense'); |
41 | 41 | $menuItems[] = array('Link'=>Globals::getPlanetListFinancialHREF($alliance_id), 'Text'=>'Financial'); |
42 | 42 | // make the selected index bold |
43 | - $boldItem =& $menuItems[$selected_index]['Text']; |
|
43 | + $boldItem = & $menuItems[$selected_index]['Text']; |
|
44 | 44 | $boldItem = '<span class="bold">' . $boldItem . '</span>'; |
45 | 45 | |
46 | 46 | $template = Smr\Template::getInstance(); |
@@ -146,7 +146,7 @@ discard block |
||
146 | 146 | 'Text' => 'Game News', |
147 | 147 | ]; |
148 | 148 | // make the selected index bold |
149 | - $boldItem =& $menuItems[$selected_index]['Text']; |
|
149 | + $boldItem = & $menuItems[$selected_index]['Text']; |
|
150 | 150 | $boldItem = '<b>' . $boldItem . '</b>'; |
151 | 151 | |
152 | 152 | $template = Smr\Template::getInstance(); |
@@ -163,7 +163,7 @@ |
||
163 | 163 | |
164 | 164 | // transfer this value to next container |
165 | 165 | if (!isset($var[$source])) { |
166 | - throw new Exception('Could not find "' . $source. '" in var!'); |
|
166 | + throw new Exception('Could not find "' . $source . '" in var!'); |
|
167 | 167 | } |
168 | 168 | if ($dest === null) { |
169 | 169 | $dest = $source; |
@@ -55,9 +55,9 @@ |
||
55 | 55 | $session = Smr\Session::getInstance(); |
56 | 56 | $account = $session->getAccount(); |
57 | 57 | if (($vis == HOF_PRIVATE && $account->getAccountID() != $accountID) || |
58 | - ($vis == HOF_ALLIANCE && isset($gameID) && |
|
59 | - !SmrGame::getGame($gameID)->hasEnded() && |
|
60 | - !SmrPlayer::getPlayer($accountID, $gameID)->sameAlliance($session->getPlayer()))) |
|
58 | + ($vis == HOF_ALLIANCE && isset($gameID) && |
|
59 | + !SmrGame::getGame($gameID)->hasEnded() && |
|
60 | + !SmrPlayer::getPlayer($accountID, $gameID)->sameAlliance($session->getPlayer()))) |
|
61 | 61 | { |
62 | 62 | return '-'; |
63 | 63 | } else { |
@@ -19,8 +19,8 @@ discard block |
||
19 | 19 | 1 => array("pipe", "w") // stdout is a pipe that the child will write to |
20 | 20 | ); |
21 | 21 | $engine = proc_open(UCI_CHESS_ENGINE, $descriptorSpec, $pipes); |
22 | - $toEngine =& $pipes[0]; |
|
23 | - $fromEngine =& $pipes[1]; |
|
22 | + $toEngine = & $pipes[0]; |
|
23 | + $fromEngine = & $pipes[1]; |
|
24 | 24 | |
25 | 25 | function readFromEngine($block = true) { |
26 | 26 | global $fromEngine; |
@@ -84,5 +84,5 @@ discard block |
||
84 | 84 | function debug($message, $debugObject = null) { |
85 | 85 | echo date('Y-m-d H:i:s - ') . $message . ($debugObject !== null ? EOL . var_export($debugObject, true) : '') . EOL; |
86 | 86 | $db = Smr\Database::getInstance(); |
87 | - $db->query('INSERT INTO npc_logs (script_id, npc_id, time, message, debug_info, var) VALUES (' . (defined('SCRIPT_ID') ? SCRIPT_ID : 0) . ', 0, NOW(),' . $db->escapeString($message) . ',' . $db->escapeString(var_export($debugObject,true)) . ',' . $db->escapeString('') . ')'); |
|
87 | + $db->query('INSERT INTO npc_logs (script_id, npc_id, time, message, debug_info, var) VALUES (' . (defined('SCRIPT_ID') ? SCRIPT_ID : 0) . ', 0, NOW(),' . $db->escapeString($message) . ',' . $db->escapeString(var_export($debugObject, true)) . ',' . $db->escapeString('') . ')'); |
|
88 | 88 | } |
@@ -130,7 +130,7 @@ |
||
130 | 130 | AND receiver_delete = ' . $db->escapeBoolean(false) . ' |
131 | 131 | ORDER BY send_time DESC'); |
132 | 132 | while ($db->nextRecord()) { |
133 | - $groupBox =& $messageBox['GroupedMessages'][$db->getInt('sender_id')]; |
|
133 | + $groupBox = & $messageBox['GroupedMessages'][$db->getInt('sender_id')]; |
|
134 | 134 | // Limit the number of messages in each group |
135 | 135 | if (!isset($groupBox['Messages']) || count($groupBox['Messages']) < MESSAGE_SCOUT_GROUP_LIMIT) { |
136 | 136 | displayMessage($groupBox, $db->getInt('message_id'), $db->getInt('account_id'), $db->getInt('sender_id'), $player->getGameID(), stripslashes($db->getField('message_text')), $db->getInt('send_time'), $db->getBoolean('msg_read'), MSG_SCOUT, $player->getAccount()); |
@@ -17,7 +17,7 @@ |
||
17 | 17 | $db = Smr\Database::getInstance(); |
18 | 18 | $db->switchDatabases($var['HistoryDatabase']); |
19 | 19 | $db->query('SELECT start_date, type, end_date, game_name, speed, game_id ' . |
20 | - 'FROM game WHERE game_id = ' . $db->escapeNumber($game_id)); |
|
20 | + 'FROM game WHERE game_id = ' . $db->escapeNumber($game_id)); |
|
21 | 21 | $db->requireRecord(); |
22 | 22 | $template->assign('GameName', $game_name); |
23 | 23 | $template->assign('Start', date($account->getDateFormat(), $db->getInt('start_date'))); |
@@ -1,30 +1,30 @@ discard block |
||
1 | 1 | <?php declare(strict_types=1); |
2 | 2 | |
3 | 3 | class DummyPlayer extends AbstractSmrPlayer { |
4 | - public function __construct($gameID=0,$playerName='Dummy',$raceID=1,$experience=1000,$alignment=100,$allianceID=0,$shipTypeID=60) { |
|
4 | + public function __construct($gameID = 0, $playerName = 'Dummy', $raceID = 1, $experience = 1000, $alignment = 100, $allianceID = 0, $shipTypeID = 60) { |
|
5 | 5 | $this->accountID = 0; |
6 | - $this->gameID = (int) $gameID; |
|
7 | - $this->playerName = (string) $playerName; |
|
6 | + $this->gameID = (int)$gameID; |
|
7 | + $this->playerName = (string)$playerName; |
|
8 | 8 | $this->playerID = 0; |
9 | 9 | $this->sectorID = 0; |
10 | - $this->lastSectorID = 0; |
|
10 | + $this->lastSectorID = 0; |
|
11 | 11 | $this->turns = 1000; |
12 | - $this->newbieTurns = 0; |
|
12 | + $this->newbieTurns = 0; |
|
13 | 13 | $this->lastNewsUpdate = 0; |
14 | 14 | $this->dead = false; |
15 | 15 | $this->landedOnPlanet = false; |
16 | - $this->lastActive = 0; |
|
17 | - $this->lastCPLAction = 0; |
|
18 | - $this->raceID = (int) $raceID; |
|
19 | - $this->credits = 0; |
|
20 | - $this->experience = (int) $experience; |
|
21 | - $this->alignment = (int) $alignment; |
|
22 | - $this->militaryPayment = 0; |
|
23 | - $this->allianceID = (int) $allianceID; |
|
24 | - $this->shipID = (int) $shipTypeID; |
|
16 | + $this->lastActive = 0; |
|
17 | + $this->lastCPLAction = 0; |
|
18 | + $this->raceID = (int)$raceID; |
|
19 | + $this->credits = 0; |
|
20 | + $this->experience = (int)$experience; |
|
21 | + $this->alignment = (int)$alignment; |
|
22 | + $this->militaryPayment = 0; |
|
23 | + $this->allianceID = (int)$allianceID; |
|
24 | + $this->shipID = (int)$shipTypeID; |
|
25 | 25 | $this->kills = 0; |
26 | 26 | $this->deaths = 0; |
27 | - $this->lastPort = 0; |
|
27 | + $this->lastPort = 0; |
|
28 | 28 | $this->bank = 0; |
29 | 29 | $this->zoom = 0; |
30 | 30 | |
@@ -48,9 +48,9 @@ discard block |
||
48 | 48 | } |
49 | 49 | |
50 | 50 | public function setAllianceID($ID) { |
51 | - if($this->allianceID == $ID) |
|
51 | + if ($this->allianceID == $ID) |
|
52 | 52 | return; |
53 | - $this->allianceID=$ID; |
|
53 | + $this->allianceID = $ID; |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | public function killPlayerByPlayer(AbstractSmrPlayer $killer) { |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | $db = Smr\Database::getInstance(); |
76 | 76 | $db->query('REPLACE INTO cached_dummys ' . |
77 | 77 | '(type, id, info) ' . |
78 | - 'VALUES (\'DummyPlayer\', '.$db->escapeString($this->getPlayerName()).', '.$db->escapeObject($this).')'); |
|
78 | + 'VALUES (\'DummyPlayer\', ' . $db->escapeString($this->getPlayerName()) . ', ' . $db->escapeObject($this) . ')'); |
|
79 | 79 | } |
80 | 80 | |
81 | 81 | public static function getCachedDummyPlayer($name) { |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | $db->query('SELECT info FROM cached_dummys |
84 | 84 | WHERE type = \'DummyPlayer\' |
85 | 85 | AND id = ' . $db->escapeString($name) . ' LIMIT 1'); |
86 | - if($db->nextRecord()) { |
|
86 | + if ($db->nextRecord()) { |
|
87 | 87 | return $db->getObject('info'); |
88 | 88 | } |
89 | 89 | else { |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | $db->query('SELECT id FROM cached_dummys |
97 | 97 | WHERE type = \'DummyPlayer\''); |
98 | 98 | $dummyNames = array(); |
99 | - while($db->nextRecord()) { |
|
99 | + while ($db->nextRecord()) { |
|
100 | 100 | $dummyNames[] = $db->getField('id'); |
101 | 101 | } |
102 | 102 | return $dummyNames; |
@@ -48,8 +48,9 @@ discard block |
||
48 | 48 | } |
49 | 49 | |
50 | 50 | public function setAllianceID($ID) { |
51 | - if($this->allianceID == $ID) |
|
52 | - return; |
|
51 | + if($this->allianceID == $ID) { |
|
52 | + return; |
|
53 | + } |
|
53 | 54 | $this->allianceID=$ID; |
54 | 55 | } |
55 | 56 | |
@@ -85,8 +86,7 @@ discard block |
||
85 | 86 | AND id = ' . $db->escapeString($name) . ' LIMIT 1'); |
86 | 87 | if($db->nextRecord()) { |
87 | 88 | return $db->getObject('info'); |
88 | - } |
|
89 | - else { |
|
89 | + } else { |
|
90 | 90 | return new DummyPlayer(); |
91 | 91 | } |
92 | 92 | } |