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 (#4908)
by
unknown
15:17
created
src/resources/views/crud/reorder.blade.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
     <?php
29 29
     function tree_element($entry, $key, $all_entries, $crud)
30 30
     {
31
-        if (! isset($entry->tree_element_shown)) {
31
+        if (!isset($entry->tree_element_shown)) {
32 32
             // mark the element as shown
33 33
             $all_entries[$key]->tree_element_shown = true;
34 34
             $entry->tree_element_shown = true;
@@ -71,8 +71,8 @@  discard block
 block discarded – undo
71 71
                 <ol class="sortable mt-0">
72 72
                     <?php
73 73
                     $all_entries = collect($entries->all())->sortBy('lft')->keyBy($crud->getModel()->getKeyName());
74
-                    $root_entries = $all_entries->filter(function ($item) use ($all_entries) {
75
-                        return $item->parent_id == 0 || ! $all_entries->has($item->parent_id);
74
+                    $root_entries = $all_entries->filter(function($item) use ($all_entries) {
75
+                        return $item->parent_id == 0 || !$all_entries->has($item->parent_id);
76 76
                     });
77 77
                     foreach ($root_entries as $key => $entry) {
78 78
                         $root_entries[$key] = tree_element($entry, $key, $all_entries, $crud);
Please login to merge, or discard this patch.