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 — 0.14 (#851)
by Jérémiah
08:23
created
src/Generator/Config/Config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,6 +45,6 @@
 block discarded – undo
45 45
 
46 46
     protected function normalizeFields(array $fields): array
47 47
     {
48
-        return array_map(fn (array $field) => new Field($field), $fields);
48
+        return array_map(fn(array $field) => new Field($field), $fields);
49 49
     }
50 50
 }
Please login to merge, or discard this patch.
src/Generator/Config/Field.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,6 +45,6 @@
 block discarded – undo
45 45
 
46 46
     protected function normalizeArgs(array $args): array
47 47
     {
48
-        return array_map(fn (array $arg) => new Arg($arg), $args);
48
+        return array_map(fn(array $arg) => new Arg($arg), $args);
49 49
     }
50 50
 }
Please login to merge, or discard this patch.
src/Generator/TypeBuilder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -311,12 +311,12 @@
 block discarded – undo
311 311
         }
312 312
 
313 313
         if (!empty($this->config->interfaces)) {
314
-            $items = array_map(fn ($type) => "$this->gqlServices->getType('$type')", $this->config->interfaces);
314
+            $items = array_map(fn($type) => "$this->gqlServices->getType('$type')", $this->config->interfaces);
315 315
             $configLoader->addItem('interfaces', ArrowFunction::new(Collection::numeric($items, true)));
316 316
         }
317 317
 
318 318
         if (!empty($this->config->types)) {
319
-            $items = array_map(fn ($type) => "$this->gqlServices->getType('$type')", $this->config->types);
319
+            $items = array_map(fn($type) => "$this->gqlServices->getType('$type')", $this->config->types);
320 320
             $configLoader->addItem('types', ArrowFunction::new(Collection::numeric($items, true)));
321 321
         }
322 322
 
Please login to merge, or discard this patch.