Completed
Push — master ( e9112a...6cc2de )
by Adrien
02:31
created
src/Factory/ObjectTypeFactory.php 1 patch
Spacing   +2 added lines, -2 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\Factory;
6 6
 
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
         $typeName = Utils::getTypeName($className);
26 26
         $description = $this->getDescription($className);
27 27
 
28
-        $fieldsGetter = function () use ($className): array {
28
+        $fieldsGetter = function() use ($className): array {
29 29
             $factory = new OutputFieldsConfigurationFactory($this->types, $this->entityManager);
30 30
             $configuration = $factory->create($className);
31 31
 
Please login to merge, or discard this patch.
src/Factory/InputTypeFactory.php 1 patch
Spacing   +2 added lines, -2 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\Factory;
6 6
 
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
         $typeName = Utils::getInputTypeName($className);
26 26
         $description = $this->getDescription($className);
27 27
 
28
-        $fieldsGetter = function () use ($className): array {
28
+        $fieldsGetter = function() use ($className): array {
29 29
             $factory = new InputFieldsConfigurationFactory($this->types, $this->entityManager);
30 30
             $configuration = $factory->create($className);
31 31
 
Please login to merge, or discard this patch.
src/Factory/PartialInputTypeFactory.php 1 patch
Spacing   +2 added lines, -2 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\Factory;
6 6
 
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
         $type = clone $this->types->getInput($className);
29 29
         $fieldsGetter = $type->config['fields'];
30 30
 
31
-        $optionalFieldsGetter = function () use ($fieldsGetter): array {
31
+        $optionalFieldsGetter = function() use ($fieldsGetter): array {
32 32
             $optionalFields = [];
33 33
             foreach ($fieldsGetter() as $field) {
34 34
                 if ($field['type'] instanceof NonNull) {
Please login to merge, or discard this patch.