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

Test Setup Failed
Pull Request — master (#2308)
by Cristian
12:22 queued 06:40
created
src/app/Http/Controllers/Operations/FetchOperation.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -71,8 +71,8 @@  discard block
 block discarded – undo
71 71
         $request = \Request::instance();
72 72
         $fetchConfig = [];
73 73
 
74
-        if (! is_array($arg)) {
75
-            if (! class_exists($arg)) {
74
+        if (!is_array($arg)) {
75
+            if (!class_exists($arg)) {
76 76
                 return response()->json(['error' => 'Class: '.$arg.' does not exists'], 500);
77 77
             }
78 78
             $fetchConfig['model'] = $arg;
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
             foreach ($whereToSearch as $searchColumn) {
116 116
                 $columnType = $conn->getSchemaBuilder()->getColumnType($table, $searchColumn);
117 117
 
118
-                $operation = ! isset($isFirst) ? 'where' : 'orWhere';
118
+                $operation = !isset($isFirst) ? 'where' : 'orWhere';
119 119
 
120 120
                 if ($columnType == 'string') {
121 121
                     $instance->{$operation}($searchColumn, 'LIKE', '%'.$search_term.'%');
Please login to merge, or discard this patch.