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... ( 8c034f )
by
unknown
16:55 queued 11:05
created
src/lib/Default/AbstractSmrPlayer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2769,7 +2769,7 @@  discard block
 block discarded – undo
2769 2769
 			'Starting Sector' => $this->getSectorID(),
2770 2770
 		];
2771 2771
 
2772
-		$this->missions[$missionID] =& $mission;
2772
+		$this->missions[$missionID] = & $mission;
2773 2773
 		$this->setupMissionStep($missionID);
2774 2774
 		$this->rebuildMission($missionID);
2775 2775
 
@@ -2826,7 +2826,7 @@  discard block
 block discarded – undo
2826 2826
 
2827 2827
 	public function claimMissionReward(int $missionID): string {
2828 2828
 		$this->getMissions();
2829
-		$mission =& $this->missions[$missionID];
2829
+		$mission = & $this->missions[$missionID];
2830 2830
 		if ($mission === false) {
2831 2831
 			throw new Exception('Unknown mission: ' . $missionID);
2832 2832
 		}
Please login to merge, or discard this patch.