Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
DisplayGirth.php
Go to the documentation of this file.
1 <?php
7 
9 use Magento\Usps\Helper\Data as DataHelper;
10 
15 {
21  protected $helper;
22 
28  public function __construct(DataHelper $helper)
29  {
30  $this->helper = $helper;
31  }
32 
42  public function aroundIsDisplayGirthValue(Packaging $subject, \Closure $proceed)
43  {
44  return $this->helper->displayGirthValue($subject->getShipment()->getOrder()->getShippingMethod());
45  }
46 }
aroundIsDisplayGirthValue(Packaging $subject, \Closure $proceed)