We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
26 | public function __invoke(array $inputs, $context, ResolveInfo $info, callable $resolveSingleInput): Promise |
||
27 | { |
||
28 | $data = []; |
||
29 | |||
30 | foreach ($inputs as $input) { |
||
31 | $data[$input] = $this->promiseAdapter->createFulfilled(call_user_func_array($resolveSingleInput, [$input, $context, $info])); |
||
32 | } |
||
33 | |||
34 | return $this->promiseAdapter->all($data); |
||
35 | } |
||
45 |