File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/Plugin/GraphQL/DataProducer Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -50,8 +50,8 @@ public function resolveField(FieldContext $field) {
50
50
if (!method_exists ($ this , 'resolve ' )) {
51
51
throw new \LogicException ('Missing data producer resolve method. ' );
52
52
}
53
- $ populateDefaulktValues = $ this ->configuration ['dataproducer_populate_default_values ' ] ?? TRUE ;
54
- $ context = $ populateDefaulktValues ? $ this ->getContextValuesWithDefaults () : $ this ->getContextValues ();
53
+ $ populateDefaultValues = $ this ->configuration ['dataproducer_populate_default_values ' ] ?? TRUE ;
54
+ $ context = $ populateDefaultValues ? $ this ->getContextValuesWithDefaults () : $ this ->getContextValues ();
55
55
return call_user_func_array (
56
56
[$ this , 'resolve ' ],
57
57
array_values (array_merge ($ context , [$ field ]))
You can’t perform that action at this time.
0 commit comments