di.xml 1.2 KB

123456789101112131415161718192021222324
  1. <?xml version="1.0"?>
  2. <!--
  3. /**
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. -->
  8. <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
  9. <type name="Magento\Quote\Plugin\UpdateQuoteStore">
  10. <arguments>
  11. <argument name="quoteRepository" xsi:type="object">Magento\Quote\Model\QuoteRepository\Proxy</argument>
  12. <argument name="checkoutSession" xsi:type="object">Magento\Checkout\Model\Session\Proxy</argument>
  13. </arguments>
  14. </type>
  15. <type name="Magento\Store\Model\StoreSwitcherInterface">
  16. <plugin name="update_quote_item_store_after_switch_store_view" type="Magento\Quote\Plugin\UpdateQuoteItemStore"/>
  17. </type>
  18. <type name="Magento\Store\Api\StoreCookieManagerInterface">
  19. <plugin name="update_quote_store_after_switch_store_view" type="Magento\Quote\Plugin\UpdateQuoteStore"/>
  20. </type>
  21. <type name="Magento\Customer\Model\ResourceModel\Customer">
  22. <plugin name="cart_recollect_on_group_change" type="Magento\Quote\Plugin\RecollectOnGroupChange"/>
  23. </type>
  24. </config>