Eccube\Entity\Product::getPrice02Min PHP Method

getPrice02Min() public method

Get Price02 min
public getPrice02Min ( ) : integer
return integer
    public function getPrice02Min()
    {
        $this->_calc();
        return min($this->price02);
    }

Usage Example

 /**
  * {@inheritDoc}
  */
 public function getPrice02Min()
 {
     $this->__initializer__ && $this->__initializer__->__invoke($this, 'getPrice02Min', array());
     return parent::getPrice02Min();
 }