We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -128,7 +128,7 @@ discard block |
||
| 128 | 128 | /** |
| 129 | 129 | * @param array|ArrayObject|object|null $rootValue |
| 130 | 130 | */ |
| 131 | - public function execute(?string $schemaName, array $request, $rootValue = null, bool $async = false): ExecutionResult|Promise |
|
| 131 | + public function execute(?string $schemaName, array $request, $rootValue = null, bool $async = false): ExecutionResult | Promise |
|
| 132 | 132 | { |
| 133 | 133 | $schema = $this->getSchema($schemaName); |
| 134 | 134 | /** @var string $schemaName */ |
@@ -157,7 +157,7 @@ discard block |
||
| 157 | 157 | $executorArgumentsEvent->getOperationName(), |
| 158 | 158 | $this->defaultFieldResolver |
| 159 | 159 | )->then( |
| 160 | - fn ($result) => $this->postExecute($result, $executorArgumentsEvent) |
|
| 160 | + fn($result) => $this->postExecute($result, $executorArgumentsEvent) |
|
| 161 | 161 | ); |
| 162 | 162 | } |
| 163 | 163 | |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | } |
| 82 | 82 | } |
| 83 | 83 | |
| 84 | - private function processQuery(Request $request, ?string $schemaName, bool $batched, bool $async = false): array|Promise |
|
| 84 | + private function processQuery(Request $request, ?string $schemaName, bool $batched, bool $async = false): array | Promise |
|
| 85 | 85 | { |
| 86 | 86 | if ($batched) { |
| 87 | 87 | $payload = $this->processBatchQuery($request, $schemaName); |
@@ -110,7 +110,7 @@ discard block |
||
| 110 | 110 | return $payloads; |
| 111 | 111 | } |
| 112 | 112 | |
| 113 | - private function processNormalQuery(Request $request, string $schemaName = null, bool $async = false): array|Promise |
|
| 113 | + private function processNormalQuery(Request $request, string $schemaName = null, bool $async = false): array | Promise |
|
| 114 | 114 | { |
| 115 | 115 | $params = $this->requestParser->parse($request); |
| 116 | 116 | |