Eccube\Entity\Product::getPrice02IncTaxMax PHP Method

getPrice02IncTaxMax() public method

Get Price02IncTax max
public getPrice02IncTaxMax ( ) : integer
return integer
    public function getPrice02IncTaxMax()
    {
        $this->_calc();
        return max($this->price02IncTaxs);
    }

Usage Example

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