Passed
Pull Request — master (#196)
by Christoffer
02:39
created
src/Language/Node/SelectionSetNode.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
      */
39 39
     public function getSelectionsAsArray(): array
40 40
     {
41
-        return \array_map(function (SerializationInterface $node) {
41
+        return \array_map(function(SerializationInterface $node) {
42 42
             return $node->toArray();
43 43
         }, $this->selections);
44 44
     }
Please login to merge, or discard this patch.
src/Language/Node/InputArgumentsTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      */
34 34
     public function getArgumentsAsArray(): array
35 35
     {
36
-        return \array_map(function (SerializationInterface $node) {
36
+        return \array_map(function(SerializationInterface $node) {
37 37
             return $node->toArray();
38 38
         }, $this->arguments);
39 39
     }
Please login to merge, or discard this patch.
src/Language/Node/FieldsTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
      */
33 33
     public function getFieldsAsArray(): array
34 34
     {
35
-        return \array_map(function (SerializationInterface $node) {
35
+        return \array_map(function(SerializationInterface $node) {
36 36
             return $node->toArray();
37 37
         }, $this->fields);
38 38
     }
Please login to merge, or discard this patch.
src/Language/Node/InterfacesTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      */
34 34
     public function getInterfacesAsArray(): array
35 35
     {
36
-        return \array_map(function (SerializationInterface $node) {
36
+        return \array_map(function(SerializationInterface $node) {
37 37
             return $node->toArray();
38 38
         }, $this->interfaces);
39 39
     }
Please login to merge, or discard this patch.
src/Language/Node/ObjectValueNode.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
      */
39 39
     public function getFieldsAsArray(): array
40 40
     {
41
-        return \array_map(function (SerializationInterface $node) {
41
+        return \array_map(function(SerializationInterface $node) {
42 42
             return $node->toArray();
43 43
         }, $this->fields);
44 44
     }
Please login to merge, or discard this patch.