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