Esempio n. 1
0
 private function getStore()
 {
     if (is_null($this->order->getData('store_id'))) {
         return null;
     }
     try {
         $store = $this->storeManager->getStore($this->order->getData('store_id'));
     } catch (\Exception $e) {
         return null;
     }
     return $store;
 }