Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
WeightResolver.php
Go to the documentation of this file.
1 <?php
8 
10 {
14  const HAS_WEIGHT = 1;
15 
19  const HAS_NO_WEIGHT = 0;
20 
25  public function resolveProductHasWeight(\Magento\Catalog\Model\Product $product)
26  {
27  return (bool) ($product->getData('product_has_weight') == self::HAS_WEIGHT);
28  }
29 }
resolveProductHasWeight(\Magento\Catalog\Model\Product $product)