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

Completed
Pull Request — master (#46)
by Mathieu
03:33
created
src/PanelTraits/AutoSet.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
     {
17 17
         $this->getDbColumnTypes();
18 18
 
19
-        array_map(function ($field) {
19
+        array_map(function($field) {
20 20
             // $this->labels[$field] = $this->makeLabel($field);
21 21
 
22 22
             $new_field = [
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
      */
65 65
     public function getFieldTypeFromDbColumnType($field)
66 66
     {
67
-        if (! array_key_exists($field, $this->field_types)) {
67
+        if (!array_key_exists($field, $this->field_types)) {
68 68
             return 'text';
69 69
         }
70 70
 
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
         $columns = \Schema::getColumnListing($this->model->getTable());
146 146
         $fillable = $this->model->getFillable();
147 147
 
148
-        if (! empty($fillable)) {
148
+        if (!empty($fillable)) {
149 149
             $columns = array_intersect($columns, $fillable);
150 150
         }
151 151
 
Please login to merge, or discard this patch.