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 (#769)
by Timur
45:24 queued 20:24
created
src/Generator/TypeBuilder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -214,12 +214,12 @@
 block discarded – undo
214 214
         }
215 215
 
216 216
         if (!empty($c->interfaces)) {
217
-            $items = array_map(fn ($type) => "$this->globalVars->get('typeResolver')->resolve('$type')", $c->interfaces);
217
+            $items = array_map(fn($type) => "$this->globalVars->get('typeResolver')->resolve('$type')", $c->interfaces);
218 218
             $configLoader->addItem('interfaces', ArrowFunction::new(Collection::numeric($items, true)));
219 219
         }
220 220
 
221 221
         if (!empty($c->types)) {
222
-            $items = array_map(fn ($type) => "$this->globalVars->get('typeResolver')->resolve('$type')", $c->types);
222
+            $items = array_map(fn($type) => "$this->globalVars->get('typeResolver')->resolve('$type')", $c->types);
223 223
             $configLoader->addItem('types', ArrowFunction::new(Collection::numeric($items, true)));
224 224
         }
225 225
 
Please login to merge, or discard this patch.