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 — page-classes ( c69fb3 )
by Dan
07:23
created
src/pages/Account/NewsReadAdvanced.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,8 +24,8 @@
 block discarded – undo
24 24
 		private readonly int $gameID,
25 25
 		private readonly ?string $submit = null,
26 26
 		private readonly ?string $label = null,
27
-		private readonly ?array $accountIDs = null,
28
-		private readonly ?array $allianceIDs = null,
27
+		private readonly ? array $accountIDs = null,
28
+		private readonly ? array $allianceIDs = null,
29 29
 	) {}
30 30
 
31 31
 	public function build(SmrAccount $account, Template $template): void {
Please login to merge, or discard this patch.
src/lib/Default/AbstractMenu.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@
 block discarded – undo
90 90
 		$menuItems[] = ['Link' => Globals::getPlanetListHREF($alliance_id), 'Text' => 'Defense'];
91 91
 		$menuItems[] = ['Link' => Globals::getPlanetListFinancialHREF($alliance_id), 'Text' => 'Financial'];
92 92
 		// make the selected index bold
93
-		$boldItem =& $menuItems[$selected_index]['Text'];
93
+		$boldItem = & $menuItems[$selected_index]['Text'];
94 94
 		$boldItem = '<span class="bold">' . $boldItem . '</span>';
95 95
 
96 96
 		$template = Smr\Template::getInstance();
Please login to merge, or discard this patch.