@@ -72,7 +72,7 @@ |
||
| 72 | 72 | 'type' => Type::nonNull($types->getOutput(Post::class)), |
| 73 | 73 | 'args' => [ |
| 74 | 74 | 'id' => Type::nonNull(Type::id()), // Use standard API when needed |
| 75 | - 'input' => $types->getPartialInput(Post::class), // Use automated InputObjectType for partial input for updates |
|
| 75 | + 'input' => $types->getPartialInput(Post::class), // Use automated InputObjectType for partial input for updates |
|
| 76 | 76 | ], |
| 77 | 77 | 'resolve' => function ($root, $args): void { |
| 78 | 78 | // update existing post and flush... |
@@ -31,7 +31,7 @@ |
||
| 31 | 31 | * |
| 32 | 32 | * @param class-string $className |
| 33 | 33 | */ |
| 34 | - public static function getOperatorTypeName(string $className, EnumType|ScalarType $type): string |
|
| 34 | + public static function getOperatorTypeName(string $className, EnumType | ScalarType $type): string |
|
| 35 | 35 | { |
| 36 | 36 | return preg_replace('~Type$~', '', self::getTypeName($className)) . ucfirst($type->name); |
| 37 | 37 | } |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | * |
| 54 | 54 | * @return null|T |
| 55 | 55 | */ |
| 56 | - public function getAttribute(ReflectionClass|ReflectionProperty|ReflectionMethod|ReflectionParameter $element, string $attributeName): ?ApiAttribute |
|
| 56 | + public function getAttribute(ReflectionClass | ReflectionProperty | ReflectionMethod | ReflectionParameter $element, string $attributeName): ?ApiAttribute |
|
| 57 | 57 | { |
| 58 | 58 | $attributes = $this->getAttributeInstances($element, $attributeName); |
| 59 | 59 | |
@@ -67,7 +67,7 @@ discard block |
||
| 67 | 67 | * |
| 68 | 68 | * @return T[] |
| 69 | 69 | */ |
| 70 | - private function getAttributeInstances(ReflectionClass|ReflectionMethod|ReflectionParameter|ReflectionProperty $element, string $attributeName): array |
|
| 70 | + private function getAttributeInstances(ReflectionClass | ReflectionMethod | ReflectionParameter | ReflectionProperty $element, string $attributeName): array |
|
| 71 | 71 | { |
| 72 | 72 | if (!is_subclass_of($attributeName, ApiAttribute::class)) { |
| 73 | 73 | throw new Exception(self::class . ' cannot be used for attribute than are not part of `ecodev/graphql-doctrine`.'); |
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | */'; |
| 32 | 32 | |
| 33 | 33 | #[DataProvider('providerGetMethodDescription')] |
| 34 | - public function testGetMethodDescription(string|false $comment, ?string $expected): void |
|
| 34 | + public function testGetMethodDescription(string | false $comment, ?string $expected): void |
|
| 35 | 35 | { |
| 36 | 36 | $reader = $this->create($comment); |
| 37 | 37 | $actual = $reader->getMethodDescription(); |
@@ -51,7 +51,7 @@ discard block |
||
| 51 | 51 | } |
| 52 | 52 | |
| 53 | 53 | #[DataProvider('providerGetParameterDescription')] |
| 54 | - public function testGetParameterDescription(string|false $comment, string $parameterName, ?string $expected): void |
|
| 54 | + public function testGetParameterDescription(string | false $comment, string $parameterName, ?string $expected): void |
|
| 55 | 55 | { |
| 56 | 56 | $reader = $this->create($comment); |
| 57 | 57 | $parameter = $this->createParameter($parameterName); |
@@ -71,7 +71,7 @@ discard block |
||
| 71 | 71 | } |
| 72 | 72 | |
| 73 | 73 | #[DataProvider('providerGetParameterType')] |
| 74 | - public function testGetParameterType(string|false $comment, string $parameterName, ?string $expected): void |
|
| 74 | + public function testGetParameterType(string | false $comment, string $parameterName, ?string $expected): void |
|
| 75 | 75 | { |
| 76 | 76 | $reader = $this->create($comment); |
| 77 | 77 | $parameter = $this->createParameter($parameterName); |
@@ -93,7 +93,7 @@ discard block |
||
| 93 | 93 | } |
| 94 | 94 | |
| 95 | 95 | #[DataProvider('providerGetReturnType')] |
| 96 | - public function testGetReturnType(string|false $comment, ?string $expected): void |
|
| 96 | + public function testGetReturnType(string | false $comment, ?string $expected): void |
|
| 97 | 97 | { |
| 98 | 98 | $reader = $this->create($comment); |
| 99 | 99 | $actual = $reader->getReturnType(); |
@@ -109,14 +109,14 @@ discard block |
||
| 109 | 109 | ]; |
| 110 | 110 | } |
| 111 | 111 | |
| 112 | - private function create(string|false $comment): DocBlockReader |
|
| 112 | + private function create(string | false $comment): DocBlockReader |
|
| 113 | 113 | { |
| 114 | 114 | $method = new class($comment) extends ReflectionMethod { |
| 115 | - public function __construct(private readonly string|false $comment) |
|
| 115 | + public function __construct(private readonly string | false $comment) |
|
| 116 | 116 | { |
| 117 | 117 | } |
| 118 | 118 | |
| 119 | - public function getDocComment(): string|false |
|
| 119 | + public function getDocComment(): string | false |
|
| 120 | 120 | { |
| 121 | 121 | return $this->comment; |
| 122 | 122 | } |
@@ -54,7 +54,7 @@ |
||
| 54 | 54 | } |
| 55 | 55 | |
| 56 | 56 | #[DataProvider('providerDefaultFieldResolver')] |
| 57 | - public function testDefaultFieldResolver(mixed $expected, array|object $source, string $fieldName, array $args = []): void |
|
| 57 | + public function testDefaultFieldResolver(mixed $expected, array | object $source, string $fieldName, array $args = []): void |
|
| 58 | 58 | { |
| 59 | 59 | $resolver = new DefaultFieldResolver(); |
| 60 | 60 | $fieldDefinition = new FieldDefinition(['name' => $fieldName, 'type' => Type::boolean()]); |
@@ -49,7 +49,7 @@ |
||
| 49 | 49 | * - `MyType[]|null` |
| 50 | 50 | * - `Collection<int, MyType>` |
| 51 | 51 | */ |
| 52 | - final protected function getTypeFromPhpDeclaration(ReflectionClass $class, null|string|Type $typeDeclaration, bool $isEntityId = false): null|Type |
|
| 52 | + final protected function getTypeFromPhpDeclaration(ReflectionClass $class, null | string | Type $typeDeclaration, bool $isEntityId = false): null | Type |
|
| 53 | 53 | { |
| 54 | 54 | if ($typeDeclaration === null || $typeDeclaration instanceof Type) { |
| 55 | 55 | return $typeDeclaration; |
@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | */ |
| 22 | 22 | public array $args = []; |
| 23 | 23 | |
| 24 | - public null|string|Type $type = null; |
|
| 24 | + public null | string | Type $type = null; |
|
| 25 | 25 | |
| 26 | 26 | /** |
| 27 | 27 | * @param null|string $name Can be used to alias the field |
@@ -29,7 +29,7 @@ discard block |
||
| 29 | 29 | */ |
| 30 | 30 | public function __construct( |
| 31 | 31 | public ?string $name = null, |
| 32 | - null|string $type = null, |
|
| 32 | + null | string $type = null, |
|
| 33 | 33 | public ?string $description = null, |
| 34 | 34 | ) { |
| 35 | 35 | $this->type = $type; |