We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -93,7 +93,7 @@ discard block |
||
| 93 | 93 | foreach (\Globals::getGoods() as $goodId => $value) { |
| 94 | 94 | if ($goods[$goodId] === true) { |
| 95 | 95 | if ($sectors[$currentSectorId]->getPort()->getGoodTransaction($goodId) === self::GOOD_SELLS && |
| 96 | - $sectors[$targetSectorId]->getPort()->getGoodTransaction($goodId) === self::GOOD_BUYS) { |
|
| 96 | + $sectors[$targetSectorId]->getPort()->getGoodTransaction($goodId) === self::GOOD_BUYS) { |
|
| 97 | 97 | $rl[] = new OneWayRoute($currentSectorId, $targetSectorId, $raceID, $sectors[$targetSectorId]->getPort()->getRaceID(), $sectors[$currentSectorId]->getPort()->getGoodDistance($goodId), $sectors[$targetSectorId]->getPort()->getGoodDistance($goodId), $distance, $goodId); |
| 98 | 98 | } |
| 99 | 99 | } |
@@ -121,7 +121,7 @@ discard block |
||
| 121 | 121 | foreach (\Globals::getGoods() as $goodId => $value) { |
| 122 | 122 | if ($goods[$goodId] === true) { |
| 123 | 123 | if ($sectors[$currentSectorId]->getPort()->getGoodTransaction($goodId) === self::GOOD_SELLS && |
| 124 | - $sectors[$targetSectorId]->getPort()->getGoodTransaction($goodId) === self::GOOD_BUYS) { |
|
| 124 | + $sectors[$targetSectorId]->getPort()->getGoodTransaction($goodId) === self::GOOD_BUYS) { |
|
| 125 | 125 | $owr = new OneWayRoute($currentSectorId, $targetSectorId, $sectors[$currentSectorId]->getPort()->getRaceID(), $sectors[$targetSectorId]->getPort()->getRaceID(), $sectors[$currentSectorId]->getPort()->getGoodDistance($goodId), $sectors[$targetSectorId]->getPort()->getGoodDistance($goodId), $distance, $goodId); |
| 126 | 126 | $fakeReturn = new OneWayRoute($targetSectorId, $currentSectorId, $sectors[$targetSectorId]->getPort()->getRaceID(), $sectors[$currentSectorId]->getPort()->getRaceID(), 0, 0, $distance, GOODS_NOTHING); |
| 127 | 127 | $mpr = new MultiplePortRoute($owr, $fakeReturn); |
@@ -3,10 +3,10 @@ |
||
| 3 | 3 | // Holds information linking the received message and the game data |
| 4 | 4 | class GameLink |
| 5 | 5 | { |
| 6 | - public $valid = false; // identifies if the message is linked to game data |
|
| 7 | - public $account; // SmrAccount instance |
|
| 8 | - public $alliance; // SmrAlliance instance |
|
| 9 | - public $player; // SmrPlayer instance |
|
| 6 | + public $valid = false; // identifies if the message is linked to game data |
|
| 7 | + public $account; // SmrAccount instance |
|
| 8 | + public $alliance; // SmrAlliance instance |
|
| 9 | + public $player; // SmrPlayer instance |
|
| 10 | 10 | |
| 11 | 11 | // $author can be either Discord\Parts\User\{User,Member} |
| 12 | 12 | function __construct(Discord\Parts\Channel\Channel $channel, $author) { |
@@ -33,7 +33,7 @@ |
||
| 33 | 33 | $query = "SELECT table_name FROM information_schema.tables WHERE table_rows > 0 AND TABLE_SCHEMA='smr_live'"; |
| 34 | 34 | $rs = self::$conn->query($query); |
| 35 | 35 | $all = $rs->fetch_all(); |
| 36 | - array_walk_recursive($all, function ($a) { |
|
| 36 | + array_walk_recursive($all, function($a) { |
|
| 37 | 37 | self::$defaultPopulatedTables[] = "'" . $a . "'"; |
| 38 | 38 | }); |
| 39 | 39 | } |
@@ -10,7 +10,7 @@ |
||
| 10 | 10 | public function __construct() { |
| 11 | 11 | if (!self::$dbConn) { |
| 12 | 12 | // Set the mysqli driver to raise exceptions on errors |
| 13 | - if (!mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT)) { |
|
| 13 | + if (!mysqli_report(MYSQLI_REPORT_ERROR|MYSQLI_REPORT_STRICT)) { |
|
| 14 | 14 | $this->error('Failed to enable mysqli error reporting'); |
| 15 | 15 | } |
| 16 | 16 | $mysqlProperties = new MySqlProperties(); |
@@ -11,7 +11,7 @@ |
||
| 11 | 11 | |
| 12 | 12 | $db->switchDatabases($var['HistoryDatabase']); |
| 13 | 13 | $db->query('SELECT start_date, type, end_date, game_name, speed, game_id ' . |
| 14 | - 'FROM game WHERE game_id = ' . $db->escapeNumber($game_id)); |
|
| 14 | + 'FROM game WHERE game_id = ' . $db->escapeNumber($game_id)); |
|
| 15 | 15 | $db->requireRecord(); |
| 16 | 16 | $template->assign('GameName', $game_name); |
| 17 | 17 | $template->assign('Start', date(DATE_DATE_SHORT, $db->getInt('start_date'))); |
@@ -58,8 +58,8 @@ discard block |
||
| 58 | 58 | |
| 59 | 59 | $totalShieldDamage = 0; |
| 60 | 60 | foreach ($attackers as $attacker) { |
| 61 | - $playerResults =& $attacker->shootPlanet($planet, false); |
|
| 62 | - $results['Attackers']['Traders'][$attacker->getAccountID()] =& $playerResults; |
|
| 61 | + $playerResults = & $attacker->shootPlanet($planet, false); |
|
| 62 | + $results['Attackers']['Traders'][$attacker->getAccountID()] = & $playerResults; |
|
| 63 | 63 | $results['Attackers']['TotalDamage'] += $playerResults['TotalDamage']; |
| 64 | 64 | foreach ($playerResults['Weapons'] as $weapon) { |
| 65 | 65 | if (isset($weapon['ActualDamage'])) { // Only set if the weapon hits |
@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | $downgradeDamage = $results['Attackers']['TotalDamage'] - $totalShieldDamage; |
| 73 | 73 | $results['Attackers']['Downgrades'] = $planet->checkForDowngrade($downgradeDamage); |
| 74 | 74 | |
| 75 | -$results['Planet'] =& $planet->shootPlayers($attackers); |
|
| 75 | +$results['Planet'] = & $planet->shootPlayers($attackers); |
|
| 76 | 76 | |
| 77 | 77 | $account->log(LOG_TYPE_PLANET_BUSTING, 'Player attacks planet, the planet does ' . $results['Planet']['TotalDamage'] . ', their team does ' . $results['Attackers']['TotalDamage'] . ' and downgrades: ' . var_export($results['Attackers']['Downgrades'], true), $planet->getSectorID()); |
| 78 | 78 | |
@@ -53,8 +53,8 @@ discard block |
||
| 53 | 53 | |
| 54 | 54 | $totalShieldDamage = 0; |
| 55 | 55 | foreach ($attackers as $attacker) { |
| 56 | - $playerResults =& $attacker->shootPort($port); |
|
| 57 | - $results['Attackers']['Traders'][$attacker->getAccountID()] =& $playerResults; |
|
| 56 | + $playerResults = & $attacker->shootPort($port); |
|
| 57 | + $results['Attackers']['Traders'][$attacker->getAccountID()] = & $playerResults; |
|
| 58 | 58 | $results['Attackers']['TotalDamage'] += $playerResults['TotalDamage']; |
| 59 | 59 | foreach ($playerResults['Weapons'] as $weapon) { |
| 60 | 60 | if (isset($weapon['ActualDamage'])) { // Only set if the weapon hits |
@@ -67,7 +67,7 @@ discard block |
||
| 67 | 67 | $downgradeDamage = $results['Attackers']['TotalDamage'] - $totalShieldDamage; |
| 68 | 68 | $results['Attackers']['Downgrades'] = $port->checkForDowngrade($downgradeDamage); |
| 69 | 69 | |
| 70 | -$results['Port'] =& $port->shootPlayers($attackers); |
|
| 70 | +$results['Port'] = & $port->shootPlayers($attackers); |
|
| 71 | 71 | |
| 72 | 72 | $account->log(LOG_TYPE_PORT_RAIDING, 'Player attacks port, the port does ' . $results['Port']['TotalDamage'] . ', their team does ' . $results['Attackers']['TotalDamage'] . ' and downgrades ' . $results['Attackers']['Downgrades'] . ' levels.', $port->getSectorID()); |
| 73 | 73 | |
@@ -19,7 +19,7 @@ |
||
| 19 | 19 | create_error('Join Date is not valid!'); |
| 20 | 20 | } |
| 21 | 21 | $start = empty(Request::get('game_start')) ? $join : |
| 22 | - DateTime::createFromFormat('d/m/Y|', Request::get('game_start')); |
|
| 22 | + DateTime::createFromFormat('d/m/Y|', Request::get('game_start')); |
|
| 23 | 23 | if ($start === false) { |
| 24 | 24 | create_error('Start Date is not valid!'); |
| 25 | 25 | } |
@@ -1,14 +1,14 @@ discard block |
||
| 1 | 1 | <?php declare(strict_types=1); |
| 2 | 2 | |
| 3 | 3 | //first create the game |
| 4 | -$db->query('SELECT game_id FROM game WHERE game_name='.$db->escapeString(Request::get('game_name')).' LIMIT 1'); |
|
| 4 | +$db->query('SELECT game_id FROM game WHERE game_name=' . $db->escapeString(Request::get('game_name')) . ' LIMIT 1'); |
|
| 5 | 5 | if ($db->nextRecord()) { |
| 6 | 6 | create_error('That game name is already taken.'); |
| 7 | 7 | } |
| 8 | 8 | |
| 9 | 9 | $db->query('SELECT game_id FROM game ORDER BY game_id DESC LIMIT 1'); |
| 10 | 10 | if ($db->nextRecord()) { |
| 11 | - $newID = $db->getInt('game_id')+1; |
|
| 11 | + $newID = $db->getInt('game_id') + 1; |
|
| 12 | 12 | } else { |
| 13 | 13 | $newID = 1; |
| 14 | 14 | } |
@@ -18,8 +18,7 @@ discard block |
||
| 18 | 18 | if ($join === false) { |
| 19 | 19 | create_error('Join Date is not valid!'); |
| 20 | 20 | } |
| 21 | -$start = empty(Request::get('game_start')) ? $join : |
|
| 22 | - DateTime::createFromFormat('d/m/Y|', Request::get('game_start')); |
|
| 21 | +$start = empty(Request::get('game_start')) ? $join : DateTime::createFromFormat('d/m/Y|', Request::get('game_start')); |
|
| 23 | 22 | if ($start === false) { |
| 24 | 23 | create_error('Start Date is not valid!'); |
| 25 | 24 | } |