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 — main (#5342)
by Cristian
29:11 queued 14:08
created
src/app/Library/CrudPanel/Traits/Reorder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,9 +23,9 @@
 block discarded – undo
23 23
         // sent in the request that are not in the database
24 24
         $itemKeys = $this->model->query()->select($primaryKey)->get()->pluck($primaryKey);
25 25
 
26
-        $reorderItems = collect($request)->filter(function ($item) use ($itemKeys) {
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] = (int) $item['item_id'];
30 30
             $item['parent_id'] = empty($item['parent_id']) ? null : (int) $item['parent_id'];
31 31
             $item['depth'] = empty($item['depth']) ? null : (int) $item['depth'];
Please login to merge, or discard this patch.