Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
SalesEventQuoteMerge.php
Go to the documentation of this file.
1 <?php
6 declare(strict_types=1);
7 
9 
12 
17 {
24  public function execute(\Magento\Framework\Event\Observer $observer)
25  {
27  $targetQuote = $observer->getData('quote');
29  $sourceQuote = $observer->getData('source');
30 
31  $giftMessageId = $sourceQuote->getGiftMessageId();
32  if ($giftMessageId) {
33  $targetQuote->setGiftMessageId($giftMessageId);
34  }
35 
36  return $this;
37  }
38 }