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

Passed
Pull Request — master (#2311)
by Cristian
13:38 queued 06:12
created
src/app/Http/Controllers/Operations/InlineCreateOperation.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
      */
58 58
     public function getInlineCreateModal()
59 59
     {
60
-        if (! request()->has('entity')) {
60
+        if (!request()->has('entity')) {
61 61
             abort(400, 'No "entity" inside the request.');
62 62
         }
63 63
 
@@ -80,17 +80,17 @@  discard block
 block discarded – undo
80 80
      */
81 81
     public function inlineRefreshOptions()
82 82
     {
83
-        if (! request()->has('field')) {
83
+        if (!request()->has('field')) {
84 84
             abort(400, 'No "field" inside the request.');
85 85
         }
86 86
 
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.