Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
GridProcessAddressChange.php
Go to the documentation of this file.
1 <?php
7 namespace Magento\Sales\Observer;
8 
12 
17 {
18 
22  protected $gridPool;
23 
27  public function __construct(
29  ) {
30  $this->gridPool= $gridPool;
31  }
32 
40  public function execute(EventObserver $observer)
41  {
42  $this->gridPool->refreshByOrderId($observer->getOrderId());
43  }
44 }