Completed
Push — master ( 9a8c05...020154 )
by Alexandr
02:48
created
src/Definition/MutationType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     public function resolve($value = null, $args = [])
19 19
     {
20 20
         /** @var Schema|Field  $value */
21
-        if($value instanceof Schema){
21
+        if ($value instanceof Schema) {
22 22
             return $value->getMutationType();
23 23
         }
24 24
 
Please login to merge, or discard this patch.
Tests/Type/ObjectTypeTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
             ->addField('kind', 'string')
22 22
             ->addField('description', 'string')
23 23
             ->addField('ofType', new QueryListType(), [
24
-                'resolve' => function () {
24
+                'resolve' => function() {
25 25
                     return [];
26 26
                 }
27 27
             ])
Please login to merge, or discard this patch.