We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -16,7 +16,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 | |