Completed
Pull Request — master (#77)
by Sebastian
02:39
created
src/Schema/AbstractSchema.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
             $config['mutation'] = new InternalSchemaMutationObject(['name' => $this->getName() . 'Mutation']);
29 29
         }
30 30
         if (!array_key_exists('types', $config)) {
31
-          $config['types'] = [];
31
+            $config['types'] = [];
32 32
         }
33 33
 
34 34
         $this->config = new SchemaConfig($config, $this);
Please login to merge, or discard this patch.
src/Execution/Processor.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -332,7 +332,7 @@
 block discarded – undo
332 332
 
333 333
                 $innerType = $queryType;
334 334
                 while ($innerType instanceof CompositeTypeInterface) {
335
-                  $innerType = $innerType->getTypeOf();
335
+                    $innerType = $innerType->getTypeOf();
336 336
                 }
337 337
 
338 338
                 if ($fragment->getModel() !== $innerType->getName()) {
Please login to merge, or discard this patch.