Skip to content

Commit

Permalink
fix missing required argument
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-kl1 committed Nov 11, 2020
1 parent aa272e6 commit 8ed5082
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
class ItemResolverComposite implements ItemResolverInterface
{
/** @var string[] */
private $itemResolvers = [];
private $itemResolvers;

/** @var ItemResolverInterface[] */
private $itemResolversInstances = [];
Expand Down
5 changes: 5 additions & 0 deletions app/code/Magento/Catalog/etc/di.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1319,4 +1319,9 @@
</argument>
</arguments>
</type>
<type name="Magento\Catalog\Model\Product\Configuration\Item\ItemResolverComposite">
<arguments>
<argument name="itemResolvers" xsi:type="array"/>
</arguments>
</type>
</config>

0 comments on commit 8ed5082

Please sign in to comment.