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 (#2311)
by Cristian
06:32
created
src/app/Http/Controllers/Operations/InlineCreateOperation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -87,10 +87,10 @@
 block discarded – undo
87 87
         $field = $this->crud->fields()[request()->get('field')];
88 88
         $options = [];
89 89
 
90
-        if (! empty($field)) {
90
+        if (!empty($field)) {
91 91
             $relatedModelInstance = new $field['model']();
92 92
 
93
-            if (! isset($field['options'])) {
93
+            if (!isset($field['options'])) {
94 94
                 $options = $field['model']::all()->pluck($field['attribute'], $relatedModelInstance->getKeyName());
95 95
             } else {
96 96
                 $options = call_user_func($field['options'], $field['model']::query()->pluck($field['attribute'], $relatedModelInstance->getKeyName()));
Please login to merge, or discard this patch.