We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -24,7 +24,7 @@ |
||
| 24 | 24 | |
| 25 | 25 | public function getBuilder(string $name, ?string $queryAlias, ?string $mutationAlias = null, ?string $subscriptionAlias = null, array $types = []): Closure |
| 26 | 26 | { |
| 27 | - return function () use ($name, $queryAlias, $mutationAlias, $subscriptionAlias, $types): ExtensibleSchema { |
|
| 27 | + return function () use ($name, $queryAlias, $mutationAlias, $subscriptionAlias, $types) : ExtensibleSchema { |
|
| 28 | 28 | static $schema = null; |
| 29 | 29 | if (null === $schema) { |
| 30 | 30 | $schema = $this->create($name, $queryAlias, $mutationAlias, $subscriptionAlias, $types); |
@@ -261,7 +261,7 @@ |
||
| 261 | 261 | public function testUnionAutoguessed(): void |
| 262 | 262 | { |
| 263 | 263 | $this->expect('Killable', 'union', [ |
| 264 | - 'types' => ['Hero', 'Mandalorian', 'Sith'], |
|
| 264 | + 'types' => ['Hero', 'Mandalorian', 'Sith'], |
|
| 265 | 265 | 'resolveType' => '@=value.getType()', |
| 266 | 266 | ]); |
| 267 | 267 | } |
@@ -62,7 +62,7 @@ |
||
| 62 | 62 | /** |
| 63 | 63 | * @throws ArgumentsValidationException |
| 64 | 64 | */ |
| 65 | - public function validate(string|array|null $groups = null, bool $throw = true): ?ConstraintViolationListInterface |
|
| 65 | + public function validate(string | array | null $groups = null, bool $throw = true): ?ConstraintViolationListInterface |
|
| 66 | 66 | { |
| 67 | 67 | $rootNode = new ValidationNode( |
| 68 | 68 | $this->info->parentType, |