We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| @@ 797-804 (lines=8) @@ | ||
| 794 | 'attributes' => [] |
|
| 795 | ]; |
|
| 796 | ||
| 797 | if (!in_array($field, $this->model->getHidden())) |
|
| 798 | { |
|
| 799 | $this->columns[] = [ |
|
| 800 | 'name' => $field, |
|
| 801 | 'label' => ucfirst($field), |
|
| 802 | 'type' => $this->getFieldTypeFromDbColumnType($field) |
|
| 803 | ]; |
|
| 804 | } |
|
| 805 | ||
| 806 | }, $this->getDbColumnsNames()); |
|
| 807 | } |
|
| @@ 469-469 (lines=1) @@ | ||
| 466 | ||
| 467 | $this->fields[] = ['name' => $field, 'value' => '', 'default' => $this->fieldTypes[$field]['default'], 'type' => $this->getType($field), 'values' => [], 'attributes' => []]; |
|
| 468 | ||
| 469 | if (!in_array($field, $this->model->getHidden())) $this->columns[] = ['name' => $field, 'type' => $this->getType($field)]; |
|
| 470 | }, $this->getColumns()); |
|
| 471 | } |
|
| 472 | ||