We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -45,6 +45,6 @@ |
||
| 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 | } |
@@ -311,12 +311,12 @@ |
||
| 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 | |