Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Minqty.php
Go to the documentation of this file.
1 <?php
8 
12 class Minqty extends \Magento\Framework\App\Config\Value
13 {
19  public function beforeSave()
20  {
21  parent::beforeSave();
22  $minQty = (int) $this->getValue() >= 0 ? (int) $this->getValue() : (int) $this->getOldValue();
23  $this->setValue((string) $minQty);
24  return $this;
25  }
26 }