@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | } |
66 | 66 | |
67 | 67 | $typeConfig = $this->getConfig(); |
68 | - $requiredFields = array_filter($typeConfig->getFields(), function (InputFieldInterface $field) { |
|
68 | + $requiredFields = array_filter($typeConfig->getFields(), function(InputFieldInterface $field) { |
|
69 | 69 | return $field->getType()->getKind() == TypeMap::KIND_NON_NULL; |
70 | 70 | }); |
71 | 71 | |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | public function parseValue($value) |
107 | 107 | { |
108 | 108 | if (is_null($value)) return null; |
109 | - if($value instanceof InputObject) { |
|
109 | + if ($value instanceof InputObject) { |
|
110 | 110 | $value = $value->getValue(); |
111 | 111 | } |
112 | 112 |