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
Pull Request — master (#911)
by
unknown
04:14
created
lib/Default/MySqlDatabase.class.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -17,10 +17,10 @@  discard block
 block discarded – undo
17 17
 				$this->error('Failed to enable mysqli error reporting');
18 18
 			}
19 19
 
20
-            $host = self::$host;
21
-            $user = self::$host;
22
-            $password = self::$password;
23
-            $port = self::$port;
20
+			$host = self::$host;
21
+			$user = self::$host;
22
+			$password = self::$password;
23
+			$port = self::$port;
24 24
 
25 25
 			// The configuration can be overridden via PHPUnit configuration
26 26
 			if (defined("OVERRIDE_MYSQL_CONFIG")) {
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
 			}
32 32
 
33 33
 			self::$dbConn = new mysqli($host, $user, $password,
34
-			                           $dbName, $port, self::$socket);
34
+									   $dbName, $port, self::$socket);
35 35
 			self::$selectedDbName = $dbName;
36 36
 
37 37
 			// Default server charset should be set correctly. Using the default
Please login to merge, or discard this patch.