Skip to content

Commit

Permalink
GraphQL-152: Allow scalars as resolver return type
Browse files Browse the repository at this point in the history
  • Loading branch information
Valeriy Nayda committed Sep 11, 2018
1 parent 8984c54 commit 5fdbfc0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/code/Magento/BundleGraphQl/Model/Resolver/BundleItems.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,16 @@ class BundleItems implements ResolverInterface
/**
* @param Collection $bundleOptionCollection
* @param ValueFactory $valueFactory
* @param MetadataPool $metdataPool
* @param MetadataPool $metadataPool
*/
public function __construct(
Collection $bundleOptionCollection,
ValueFactory $valueFactory,
MetadataPool $metdataPool
MetadataPool $metadataPool
) {
$this->bundleOptionCollection = $bundleOptionCollection;
$this->valueFactory = $valueFactory;
$this->metdataPool = $metdataPool;
$this->metadataPool = $metadataPool;
}

/**
Expand Down

0 comments on commit 5fdbfc0

Please sign in to comment.