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 — use-upsert-for-reorder ( 93f693 )
by Pedro
12:43
created
src/app/Library/CrudPanel/Traits/Reorder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
 
26 26
         $reorderItems = collect($request)->filter(function($item) use ($itemKeys) {
27 27
             return $item['item_id'] != '' && $item['item_id'] != null && $itemKeys->contains($item['item_id']);
28
-        })->map(function ($item) use ($primaryKey) {
28
+        })->map(function($item) use ($primaryKey) {
29 29
             $item[$primaryKey] = $item['item_id'];
30 30
             $item['parent_id'] = empty($item['parent_id']) ? null : $item['parent_id'];
31 31
             $item['depth'] = empty($item['depth']) ? null : $item['depth'];
Please login to merge, or discard this patch.