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 — coverage-badge-dont-delete ( f5b557...0151eb )
by
unknown
43:01 queued 28:03
created
src/app/Models/Traits/HasFakeFields.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
     public function addFakes($columns = ['extras'])
21 21
     {
22 22
         foreach ($columns as $key => $column) {
23
-            if (! isset($this->attributes[$column])) {
23
+            if (!isset($this->attributes[$column])) {
24 24
                 continue;
25 25
             }
26 26
 
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
      */
68 68
     public function shouldDecodeFake($column)
69 69
     {
70
-        return ! in_array($column, array_keys($this->getCasts()));
70
+        return !in_array($column, array_keys($this->getCasts()));
71 71
     }
72 72
 
73 73
     /**
@@ -78,6 +78,6 @@  discard block
 block discarded – undo
78 78
      */
79 79
     public function shouldEncodeFake($column)
80 80
     {
81
-        return ! in_array($column, array_keys($this->getCasts()));
81
+        return !in_array($column, array_keys($this->getCasts()));
82 82
     }
83 83
 }
Please login to merge, or discard this patch.