Eccube\Entity\Product::getPrice02Max PHP Method

getPrice02Max() public method

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

Usage Example

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