We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -14,7 +14,7 @@ |
||
| 14 | 14 | { |
| 15 | 15 | parent::__construct( |
| 16 | 16 | 'resolveSingleInputCallback', |
| 17 | - static fn ($resolveSingleInput) => ( |
|
| 17 | + static fn($resolveSingleInput) => ( |
|
| 18 | 18 | Closure::new() |
| 19 | 19 | ->addArgument('value') |
| 20 | 20 | ->bindVars(TypeGenerator::GRAPHQL_SERVICES, 'args', 'context', 'info') |
@@ -14,7 +14,7 @@ |
||
| 14 | 14 | { |
| 15 | 15 | parent::__construct( |
| 16 | 16 | 'mutateAndGetPayloadCallback', |
| 17 | - static fn ($mutateAndGetPayload) => ( |
|
| 17 | + static fn($mutateAndGetPayload) => ( |
|
| 18 | 18 | Closure::new() |
| 19 | 19 | ->addArgument('value') |
| 20 | 20 | ->bindVars(TypeGenerator::GRAPHQL_SERVICES, 'args', 'context', 'info') |
@@ -14,7 +14,7 @@ |
||
| 14 | 14 | { |
| 15 | 15 | parent::__construct( |
| 16 | 16 | 'idFetcherCallback', |
| 17 | - static fn ($idFetcher) => ( |
|
| 17 | + static fn($idFetcher) => ( |
|
| 18 | 18 | Closure::new() |
| 19 | 19 | ->addArgument('value') |
| 20 | 20 | ->bindVars(TypeGenerator::GRAPHQL_SERVICES, 'args', 'context', 'info') |
@@ -81,7 +81,7 @@ |
||
| 81 | 81 | { |
| 82 | 82 | return array_reduce( |
| 83 | 83 | explode('.', $location), |
| 84 | - fn ($carry, $item) => "{$carry}[$item]" |
|
| 84 | + fn($carry, $item) => "{$carry}[$item]" |
|
| 85 | 85 | ); |
| 86 | 86 | } |
| 87 | 87 | |