Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Items.php
Go to the documentation of this file.
1 <?php
8 
16 {
22  public function getShipment()
23  {
24  return $this->_coreRegistry->registry('current_shipment');
25  }
26 
32  public function getOrder()
33  {
34  return $this->getShipment()->getOrder();
35  }
36 
42  public function getSource()
43  {
44  return $this->getShipment();
45  }
46 }