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 — master ( 6e3042...6fb2d4 )
by Cristian
40:51 queued 18:01
created
src/app/Library/CrudPanel/CrudFilter.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
      */
85 85
     public function wasNotApplied()
86 86
     {
87
-        return ! $this->applied;
87
+        return !$this->applied;
88 88
     }
89 89
 
90 90
     /**
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
 
106 106
         $input = $input ?? new ParameterBag($this->crud()->getRequest()->all());
107 107
 
108
-        if (! $input->has($this->name)) {
108
+        if (!$input->has($this->name)) {
109 109
             // if fallback logic was supplied and is a closure
110 110
             if (is_callable($this->fallbackLogic)) {
111 111
                 return ($this->fallbackLogic)();
@@ -285,7 +285,7 @@  discard block
 block discarded – undo
285 285
      */
286 286
     public function values($value)
287 287
     {
288
-        $this->values = (! is_string($value) && is_callable($value)) ? $value() : $value;
288
+        $this->values = (!is_string($value) && is_callable($value)) ? $value() : $value;
289 289
 
290 290
         return $this->save();
291 291
     }
Please login to merge, or discard this patch.