Example #1
0
 /**
  * Retrieve minimal quantity available for item status in stock
  *
  * @return float
  */
 public function getMinQty()
 {
     if ($this->getUseConfigMinQty()) {
         $minQty = $this->stockConfiguration->getMinQty($this->getStoreId());
     } else {
         $minQty = (double) $this->getData(static::MIN_QTY);
     }
     return $minQty;
 }