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/Models/Traits/HasIdentifiableAttribute.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
 
48 48
         //if non of the sensible defaults exists we get the first column from database that is not indexed (usually primary, foreign keys).
49 49
         foreach ($columns as $columnName => $columnProperties) {
50
-            if (! in_array($columnName, $indexedColumns)) {
50
+            if (!in_array($columnName, $indexedColumns)) {
51 51
 
52 52
                 //check for convention "field<_id>" in case developer didn't add foreign key constraints.
53 53
                 if (strpos($columnName, '_id') !== false) {
Please login to merge, or discard this patch.
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.