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 (#3332)
by
unknown
33:32 queued 17:09
created
src/app/Library/CrudPanel/Traits/Read.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
     {
39 39
         $id = $this->getCurrentEntryId();
40 40
 
41
-        if (! $id) {
41
+        if (!$id) {
42 42
             return false;
43 43
         }
44 44
 
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
      */
55 55
     public function getEntry($id)
56 56
     {
57
-        if (! $this->entry) {
57
+        if (!$this->entry) {
58 58
             $this->entry = $this->model->findOrFail($id);
59 59
             $this->entry = $this->entry->withFakes();
60 60
         }
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
             if (is_array($menu[0])) {
240 240
                 // developer defined as setPageLengthMenu([[50, 100, 300]])
241 241
                 // we will apply the same labels as the values to the menu
242
-                if (! isset($menu[1]) || ! is_array($menu[1])) {
242
+                if (!isset($menu[1]) || !is_array($menu[1])) {
243 243
                     $menu[1] = $menu[0];
244 244
                 }
245 245
             } else {
Please login to merge, or discard this patch.