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 | } |
@@ -34,7 +34,7 @@ |
||
| 34 | 34 | ?string $type = null, |
| 35 | 35 | ?string $resolve = null, |
| 36 | 36 | ?string $complexity = null, |
| 37 | - array|string|null $targetTypes = null |
|
| 37 | + array | string | null $targetTypes = null |
|
| 38 | 38 | ) { |
| 39 | 39 | parent::__construct($name, $type, $resolve, $complexity); |
| 40 | 40 | if ($targetTypes) { |
@@ -34,7 +34,7 @@ |
||
| 34 | 34 | ?string $type = null, |
| 35 | 35 | ?string $resolve = null, |
| 36 | 36 | ?string $complexity = null, |
| 37 | - array|string|null $targetTypes = null |
|
| 37 | + array | string | null $targetTypes = null |
|
| 38 | 38 | ) { |
| 39 | 39 | parent::__construct($name, $type, $resolve, $complexity); |
| 40 | 40 | if ($targetTypes) { |
@@ -62,7 +62,7 @@ discard block |
||
| 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, |
@@ -206,7 +206,7 @@ discard block |
||
| 206 | 206 | return $rootObject; |
| 207 | 207 | } |
| 208 | 208 | |
| 209 | - private static function isListOfType(GeneratedTypeInterface|ListOfType|NonNull $type): bool |
|
| 209 | + private static function isListOfType(GeneratedTypeInterface | ListOfType | NonNull $type): bool |
|
| 210 | 210 | { |
| 211 | 211 | if ($type instanceof ListOfType || ($type instanceof NonNull && $type->getWrappedType() instanceof ListOfType)) { |
| 212 | 212 | return true; |
@@ -215,7 +215,7 @@ discard block |
||
| 215 | 215 | return false; |
| 216 | 216 | } |
| 217 | 217 | |
| 218 | - private function createCollectionNode(array $values, ObjectType|InputObjectType $type, ValidationNode $parent): array |
|
| 218 | + private function createCollectionNode(array $values, ObjectType | InputObjectType $type, ValidationNode $parent): array |
|
| 219 | 219 | { |
| 220 | 220 | $collection = []; |
| 221 | 221 | |
@@ -226,7 +226,7 @@ discard block |
||
| 226 | 226 | return $collection; |
| 227 | 227 | } |
| 228 | 228 | |
| 229 | - private function createObjectNode(array $value, ObjectType|InputObjectType $type, ValidationNode $parent): ValidationNode |
|
| 229 | + private function createObjectNode(array $value, ObjectType | InputObjectType $type, ValidationNode $parent): ValidationNode |
|
| 230 | 230 | { |
| 231 | 231 | /** @phpstan-ignore-next-line */ |
| 232 | 232 | $classValidation = static::normalizeConfig($type->config['validation'] ?? []); |
@@ -88,7 +88,7 @@ discard block |
||
| 88 | 88 | $this->decorateObjectTypeFields($type, $fieldsResolved, $resolverMap); |
| 89 | 89 | } |
| 90 | 90 | |
| 91 | - private function decorateInterfaceOrUnionType(InterfaceType|UnionType $type, ResolverMapInterface $resolverMap): void |
|
| 91 | + private function decorateInterfaceOrUnionType(InterfaceType | UnionType $type, ResolverMapInterface $resolverMap): void |
|
| 92 | 92 | { |
| 93 | 93 | $this->configTypeMapping($type, ResolverMapInterface::RESOLVE_TYPE, $resolverMap); |
| 94 | 94 | $covered = $resolverMap->covered($type->name); |
@@ -210,7 +210,7 @@ discard block |
||
| 210 | 210 | $type->config['fields'] = is_callable($fields) ? $decoratedFields : $decoratedFields(); |
| 211 | 211 | } |
| 212 | 212 | |
| 213 | - private function configTypeMapping(ObjectType|InterfaceType|UnionType|CustomScalarType $type, string $fieldName, ResolverMapInterface $resolverMap): void |
|
| 213 | + private function configTypeMapping(ObjectType | InterfaceType | UnionType | CustomScalarType $type, string $fieldName, ResolverMapInterface $resolverMap): void |
|
| 214 | 214 | { |
| 215 | 215 | if ($resolverMap->isResolvable($type->name, $fieldName)) { |
| 216 | 216 | /** @phpstan-ignore-next-line */ |
@@ -23,7 +23,7 @@ |
||
| 23 | 23 | /** @var EnumType $enumTypeWithDeprecatedValue */ |
| 24 | 24 | $enumTypeWithDeprecatedValue = $this->getType('EnumWithDeprecatedValue'); |
| 25 | 25 | $value = $enumTypeWithDeprecatedValue->getValues()[0]; |
| 26 | - $this->assertSame([ // @phpstan-ignore-line |
|
| 26 | + $this->assertSame([// @phpstan-ignore-line |
|
| 27 | 27 | 'deprecationReason' => 'Just because', |
| 28 | 28 | 'value' => 'foo', |
| 29 | 29 | 'name' => 'foo', |
@@ -22,7 +22,7 @@ |
||
| 22 | 22 | $this->expectExceptionMessage( |
| 23 | 23 | 'Enum class "invalid_class" does not exist.', |
| 24 | 24 | ); |
| 25 | - new PhpEnumType([ // @phpstan-ignore-line |
|
| 25 | + new PhpEnumType([// @phpstan-ignore-line |
|
| 26 | 26 | 'name' => 'MyEnum', |
| 27 | 27 | 'enumClass' => 'invalid_class', |
| 28 | 28 | ]); |
@@ -95,7 +95,7 @@ |
||
| 95 | 95 | yield ['object', $reflectorClass, 'Tag @'.$tag.' found, but type "object" is too generic']; |
| 96 | 96 | yield ['mixed[]', $reflectorClass, 'Tag @'.$tag.' found, but the array values cannot be mixed type']; |
| 97 | 97 | yield ['array<mixed>', $reflectorClass, 'Tag @'.$tag.' found, but the array values cannot be mixed type']; |
| 98 | - yield ['', $reflectorClass, 'No @'.$tag.' tag found in doc block or tag has no type', true]; // phpDocumentor/ReflectionDocBlock |
|
| 98 | + yield ['', $reflectorClass, 'No @'.$tag.' tag found in doc block or tag has no type', true]; // phpDocumentor/ReflectionDocBlock |
|
| 99 | 99 | yield ['[]', $reflectorClass, 'No @'.$tag.' tag found in doc block or tag has no type', true]; // phpDocumentor/ReflectionDocBlock |
| 100 | 100 | } |
| 101 | 101 | } |