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

Completed
Push — master ( 389b24...6471f2 )
by Dan
22s queued 16s
created
src/lib/Default/DummyPlayer.class.php 1 patch
Braces   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -48,8 +48,9 @@  discard block
 block discarded – undo
48 48
 	}
49 49
 
50 50
 	public function setAllianceID($ID) {
51
-		if($this->allianceID == $ID)
52
-			return;
51
+		if($this->allianceID == $ID) {
52
+					return;
53
+		}
53 54
 		$this->allianceID=$ID;
54 55
 	}
55 56
 
@@ -85,8 +86,7 @@  discard block
 block discarded – undo
85 86
 						AND id = ' . $db->escapeString($name) . ' LIMIT 1');
86 87
 		if($db->nextRecord()) {
87 88
 			return $db->getObject('info');
88
-		}
89
-		else {
89
+		} else {
90 90
 			return new DummyPlayer();
91 91
 		}
92 92
 	}
Please login to merge, or discard this patch.