@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace GraphQL\Doctrine\Factory; |
6 | 6 | |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | * @param ReflectionMethod $method |
26 | 26 | * @return array |
27 | 27 | */ |
28 | - protected function methodToConfiguration(ReflectionMethod $method): ?array |
|
28 | + protected function methodToConfiguration(ReflectionMethod $method): ? array |
|
29 | 29 | { |
30 | 30 | // Silently ignore setter with anything than exactly 1 parameter |
31 | 31 | $params = $method->getParameters(); |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace GraphQL\Doctrine; |
6 | 6 | |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | * @param string $fieldName |
38 | 38 | * @return mixed |
39 | 39 | */ |
40 | - private function resolveObject($source, ?array $args, string $fieldName) |
|
40 | + private function resolveObject($source, ? array $args, string $fieldName) |
|
41 | 41 | { |
42 | 42 | $getter = $this->getGetter($source, $fieldName); |
43 | 43 | if ($getter) { |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | * @param array $args |
92 | 92 | * @return array |
93 | 93 | */ |
94 | - private function orderArguments(ReflectionMethod $method, ?array $args): array |
|
94 | + private function orderArguments(ReflectionMethod $method, ? array $args) : array |
|
95 | 95 | { |
96 | 96 | $result = []; |
97 | 97 | foreach ($method->getParameters() as $param) { |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace GraphQL\Doctrine; |
6 | 6 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace GraphQL\Doctrine\Factory; |
6 | 6 |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace GraphQL\Doctrine\Factory; |
6 | 6 | |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | * @param ReflectionMethod $method |
28 | 28 | * @return array |
29 | 29 | */ |
30 | - protected function methodToConfiguration(ReflectionMethod $method): ?array |
|
30 | + protected function methodToConfiguration(ReflectionMethod $method): ? array |
|
31 | 31 | { |
32 | 32 | // Get a field from annotation, or an empty one |
33 | 33 | $field = $this->getAnnotationReader()->getMethodAnnotation($method, Field::class) ?? new Field(); |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace GraphQL\Doctrine\Factory; |
6 | 6 | |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | * @param ReflectionMethod $method |
64 | 64 | * @return array |
65 | 65 | */ |
66 | - abstract protected function methodToConfiguration(ReflectionMethod $method): ?array; |
|
66 | + abstract protected function methodToConfiguration(ReflectionMethod $method): ? array; |
|
67 | 67 | |
68 | 68 | /** |
69 | 69 | * Create a configuration for all fields of Doctrine entity |
@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | * @param bool $isEntityId |
143 | 143 | * @return null|Type |
144 | 144 | */ |
145 | - protected function getTypeFromPhpDeclaration(ReflectionMethod $method, ?string $typeDeclaration, bool $isEntityId = false): ?Type |
|
145 | + protected function getTypeFromPhpDeclaration(ReflectionMethod $method, ?string $typeDeclaration, bool $isEntityId = false) : ?Type |
|
146 | 146 | { |
147 | 147 | if (!$typeDeclaration) { |
148 | 148 | return null; |
@@ -262,7 +262,7 @@ discard block |
||
262 | 262 | * @param null|string $type |
263 | 263 | * @throws Exception |
264 | 264 | */ |
265 | - protected function throwIfArray(ReflectionParameter $param, ?string $type): void |
|
265 | + protected function throwIfArray(ReflectionParameter $param, ?string $type) : void |
|
266 | 266 | { |
267 | 267 | if ($type === 'array') { |
268 | 268 | throw new Exception('The parameter `$' . $param->getName() . '` on method ' . $this->getMethodFullName($param->getDeclaringFunction()) . ' is type hinted as `array` and is not overriden via `@API\Argument` annotation. Either change the type hint or specify the type with `@API\Argument` annotation.'); |
@@ -310,7 +310,7 @@ discard block |
||
310 | 310 | * @param Type $type |
311 | 311 | * @return Type |
312 | 312 | */ |
313 | - protected function nonNullIfHasDefault(ReflectionParameter $param, ?Type $type): ?Type |
|
313 | + protected function nonNullIfHasDefault(ReflectionParameter $param, ?Type $type) : ?Type |
|
314 | 314 | { |
315 | 315 | if ($type instanceof NonNull && $param->isDefaultValueAvailable()) { |
316 | 316 | return $type->getWrappedType(); |
@@ -325,7 +325,7 @@ discard block |
||
325 | 325 | * @param Type $type |
326 | 326 | * @throws Exception |
327 | 327 | */ |
328 | - protected function throwIfNotInputType(ReflectionParameter $param, ?Type $type, string $annotation): void |
|
328 | + protected function throwIfNotInputType(ReflectionParameter $param, ?Type $type, string $annotation) : void |
|
329 | 329 | { |
330 | 330 | if (!$type) { |
331 | 331 | throw new Exception('Could not find type for parameter `$' . $param->name . '` for method ' . $this->getMethodFullName($param->getDeclaringFunction()) . '. Either type hint the parameter, or specify the type with `@API\\' . $annotation . '` annotation.'); |