Completed
Push — master ( f86815...020d03 )
by Adrien
01:49
created
src/ObjectTypeFactory.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.