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 (#915)
by
unknown
03:33
created
lib/Default/MySqlDatabase.class.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
 				$mysqlProperties = new MySqlProperties();
13 13
 			}
14 14
 			// Set the mysqli driver to raise exceptions on errors
15
-			if (!mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT)) {
15
+			if (!mysqli_report(MYSQLI_REPORT_ERROR|MYSQLI_REPORT_STRICT)) {
16 16
 				$this->error('Failed to enable mysqli error reporting');
17 17
 			}
18 18
 
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 		}
35 35
 
36 36
 		// Do we need to switch databases (e.g. for compatability db access)?
37
-		if ($dbName != null &&self::$selectedDbName != $dbName) {
37
+		if ($dbName != null && self::$selectedDbName != $dbName) {
38 38
 			self::$dbConn->select_db($dbName);
39 39
 			self::$selectedDbName = $dbName;
40 40
 		}
Please login to merge, or discard this patch.