Completed
Pull Request — master (#77)
by Sebastian
03:11 queued 26s
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   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -340,10 +340,10 @@
 block discarded – undo
340 340
                     $this->resolveValidator->assertValidFragmentForField($fragment, $fieldAst, $originalType);
341 341
 
342 342
                     if ($fragment->getModel() !== $innerQueryType->getName() && $fragment->getModel() !== $innerOriginalType->getName()) {
343
-                      continue;
343
+                        continue;
344 344
                     }
345 345
                 } elseif ($fragment->getTypeName() !== $innerQueryType->getName() && $fragment->getTypeName() !== $innerOriginalType->getName()) {
346
-                  continue;
346
+                    continue;
347 347
                 }
348 348
 
349 349
                 $fragmentValue = $this->processQueryFields($fragment, $queryType, $resolvedValue, $value);
Please login to merge, or discard this patch.