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
04:32
created
test/SmrTest/BaseIntegrationSpec.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
 		$query = "SELECT table_name FROM information_schema.tables WHERE table_rows > 0 AND TABLE_SCHEMA='smr_live'";
34 34
 		$rs = self::$conn->query($query);
35 35
 		$all = $rs->fetch_all();
36
-		array_walk_recursive($all, function ($a) {
36
+		array_walk_recursive($all, function($a) {
37 37
 			self::$defaultPopulatedTables[] = "'" . $a . "'";
38 38
 		});
39 39
 	}
Please login to merge, or discard this patch.
lib/Default/MySqlDatabase.class.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 	public function __construct() {
11 11
 		if (!self::$dbConn) {
12 12
 			// Set the mysqli driver to raise exceptions on errors
13
-			if (!mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT)) {
13
+			if (!mysqli_report(MYSQLI_REPORT_ERROR|MYSQLI_REPORT_STRICT)) {
14 14
 				$this->error('Failed to enable mysqli error reporting');
15 15
 			}
16 16
 			$mysqlProperties = new MySqlProperties();
Please login to merge, or discard this patch.