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 — master ( ec653d...761e69 )
by Dan
03:59
created
test/SmrTest/BaseIntegrationSpec.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
 		$query = "SELECT table_name FROM information_schema.tables WHERE table_rows > 0 AND TABLE_SCHEMA='smr_live'";
30 30
 		$rs = $conn->query($query);
31 31
 		$all = $rs->fetch_all();
32
-		array_walk_recursive($all, function ($a) {
32
+		array_walk_recursive($all, function($a) {
33 33
 			self::$defaultPopulatedTables[] = "'" . $a . "'";
34 34
 		});
35 35
 	}
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
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 	public function __construct() {
14 14
 		if (!self::$dbConn) {
15 15
 			// Set the mysqli driver to raise exceptions on errors
16
-			if (!mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT)) {
16
+			if (!mysqli_report(MYSQLI_REPORT_ERROR|MYSQLI_REPORT_STRICT)) {
17 17
 				$this->error('Failed to enable mysqli error reporting');
18 18
 			}
19 19
 
Please login to merge, or discard this patch.