@@ -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 | |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | $typeName = $this->getTypeName($class); |
47 | 47 | $description = $this->getDescription($class); |
48 | 48 | |
49 | - $fieldGetter = function () use ($className): array { |
|
49 | + $fieldGetter = function() use ($className): array { |
|
50 | 50 | $factory = new FieldsConfigurationFactory($this->types, $this->entityManager); |
51 | 51 | $configuration = $factory->create($className); |
52 | 52 | |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | * @param ReflectionClass $class |
86 | 86 | * @return string|null |
87 | 87 | */ |
88 | - private function getDescription(ReflectionClass $class): ?string |
|
88 | + private function getDescription(ReflectionClass $class): ? string |
|
89 | 89 | { |
90 | 90 | $comment = $class->getDocComment(); |
91 | 91 |