We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| @@ 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 | ||
| @@ 843-850 (lines=8) @@ | ||
| 840 | 'attributes' => [] |
|
| 841 | ]; |
|
| 842 | ||
| 843 | if (!in_array($field, $this->model->getHidden())) |
|
| 844 | { |
|
| 845 | $this->columns[] = [ |
|
| 846 | 'name' => $field, |
|
| 847 | 'label' => ucfirst($field), |
|
| 848 | 'type' => $this->getFieldTypeFromDbColumnType($field) |
|
| 849 | ]; |
|
| 850 | } |
|
| 851 | ||
| 852 | }, $this->getDbColumnsNames()); |
|
| 853 | } |
|