Skip to content

Commit 5fdbfc0

Browse files
author
Valeriy Nayda
committed
GraphQL-152: Allow scalars as resolver return type
1 parent 8984c54 commit 5fdbfc0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/code/Magento/BundleGraphQl/Model/Resolver/BundleItems.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,16 @@ class BundleItems implements ResolverInterface
3939
/**
4040
* @param Collection $bundleOptionCollection
4141
* @param ValueFactory $valueFactory
42-
* @param MetadataPool $metdataPool
42+
* @param MetadataPool $metadataPool
4343
*/
4444
public function __construct(
4545
Collection $bundleOptionCollection,
4646
ValueFactory $valueFactory,
47-
MetadataPool $metdataPool
47+
MetadataPool $metadataPool
4848
) {
4949
$this->bundleOptionCollection = $bundleOptionCollection;
5050
$this->valueFactory = $valueFactory;
51-
$this->metdataPool = $metdataPool;
51+
$this->metadataPool = $metadataPool;
5252
}
5353

5454
/**

0 commit comments

Comments
 (0)