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

Passed
Push — dependabot/composer/phpstan/ph... ( 0da3cc )
by
unknown
06:12
created
src/engine/Default/admin/enable_game_processing.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,4 +11,4 @@
 block discarded – undo
11 11
 $msg = '<span class="green">SUCCESS: </span>Enabled game ' . $game->getDisplayName();
12 12
 
13 13
 Page::create('skeleton.php', 'admin/enable_game.php',
14
-             array('processing_msg' => $msg))->go();
14
+			 array('processing_msg' => $msg))->go();
Please login to merge, or discard this patch.
src/lib/Smr/HallOfFame.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -67,9 +67,9 @@
 block discarded – undo
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
 		{
74 74
 			return '-';
75 75
 		} else {
Please login to merge, or discard this patch.
src/lib/Smr/Lotto.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
 		// Delete all tickets and re-insert the winning ticket
42 42
 		$db->write('DELETE FROM player_has_ticket WHERE game_id = ' . $db->escapeNumber($gameID));
43 43
 		$db->write('INSERT INTO player_has_ticket (game_id, account_id, time, prize) '
44
-		           .'VALUES (' . $db->escapeNumber($gameID) . ',' . $db->escapeNumber($winner_id) . ',\'0\',' . $db->escapeNumber($lottoInfo['Prize']) . ')');
44
+				   .'VALUES (' . $db->escapeNumber($gameID) . ',' . $db->escapeNumber($winner_id) . ',\'0\',' . $db->escapeNumber($lottoInfo['Prize']) . ')');
45 45
 
46 46
 		$db->unlock();
47 47
 
Please login to merge, or discard this patch.
src/engine/Default/admin/permission_manage.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,5 +51,5 @@
 block discarded – undo
51 51
 	$template->assign('ProcessingHREF', $processingHREF);
52 52
 
53 53
 	$template->assign('PermissionCategories',
54
-	                  Smr\AdminPermissions::getPermissionsByCategory());
54
+					  Smr\AdminPermissions::getPermissionsByCategory());
55 55
 }
Please login to merge, or discard this patch.