WellCommerce\Bundle\AppBundle\Entity\Price::getGrossAmount PHP Method

getGrossAmount() public method

public getGrossAmount ( ) : float
return float
    public function getGrossAmount() : float
    {
        return $this->grossAmount;
    }

Usage Example

Ejemplo n.º 1
0
 /**
  * {@inheritdoc}
  */
 public function getShippingCostGrossPrice()
 {
     return $this->productTotal->getGrossAmount();
 }