Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

Failed Conditions
Push — main ( d9cfb9...10f5c7 )
by Dan
32s queued 21s
created
src/pages/Player/ShopGoods.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -64,9 +64,9 @@
 block discarded – undo
64 64
 					//find the fine
65 65
 					//get base for ports that dont happen to trade that good
66 66
 					$fine = $totalFine = $port->getLevel() *
67
-					    (($ship->getCargo(GOODS_SLAVES) * TradeGood::get(GOODS_SLAVES)->basePrice) +
68
-					     ($ship->getCargo(GOODS_WEAPONS) * TradeGood::get(GOODS_WEAPONS)->basePrice) +
69
-					     ($ship->getCargo(GOODS_NARCOTICS) * TradeGood::get(GOODS_NARCOTICS)->basePrice));
67
+						(($ship->getCargo(GOODS_SLAVES) * TradeGood::get(GOODS_SLAVES)->basePrice) +
68
+						 ($ship->getCargo(GOODS_WEAPONS) * TradeGood::get(GOODS_WEAPONS)->basePrice) +
69
+						 ($ship->getCargo(GOODS_NARCOTICS) * TradeGood::get(GOODS_NARCOTICS)->basePrice));
70 70
 					$player->increaseHOF($ship->getCargo(GOODS_SLAVES) + $ship->getCargo(GOODS_WEAPONS) + $ship->getCargo(GOODS_NARCOTICS), ['Trade', 'Search', 'Caught', 'Goods Confiscated'], HOF_PUBLIC);
71 71
 					$player->increaseHOF($totalFine, ['Trade', 'Search', 'Caught', 'Amount Fined'], HOF_PUBLIC);
72 72
 					$template->assign('TotalFine', $totalFine);
Please login to merge, or discard this patch.
src/pages/Admin/UniGen/CreateGameProcessor.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,8 +24,7 @@
 block discarded – undo
24 24
 		$newID = $dbResult->record()->getInt('max_game_id') + 1;
25 25
 
26 26
 		$join = new DateTime(Request::get('game_join'));
27
-		$start = empty(Request::get('game_start')) ? $join :
28
-			new DateTime(Request::get('game_start'));
27
+		$start = empty(Request::get('game_start')) ? $join : new DateTime(Request::get('game_start'));
29 28
 		$end = new DateTime(Request::get('game_end'));
30 29
 
31 30
 		$game = SmrGame::createGame($newID);
Please login to merge, or discard this patch.
src/pages/Admin/UniGen/EditGameProcessor.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,8 +17,7 @@
 block discarded – undo
17 17
 
18 18
 	public function build(SmrAccount $account): never {
19 19
 		$join = new DateTime(Request::get('game_join'));
20
-		$start = empty(Request::get('game_start')) ? $join :
21
-			new DateTime(Request::get('game_start'));
20
+		$start = empty(Request::get('game_start')) ? $join : new DateTime(Request::get('game_start'));
22 21
 		$end = new DateTime(Request::get('game_end'));
23 22
 
24 23
 		$game = SmrGame::getGame($this->gameID);
Please login to merge, or discard this patch.