Elcodi\Plugin\CustomShippingBundle\Entity\Traits\ShippingPriceRangeTrait::setFromPrice PHP Method

setFromPrice() public method

Sets from price
public setFromPrice ( Elcodi\Component\Currency\Entity\Interfaces\MoneyInterface $price )
$price Elcodi\Component\Currency\Entity\Interfaces\MoneyInterface Price
    public function setFromPrice(\Elcodi\Component\Currency\Entity\Interfaces\MoneyInterface $price)
    {
        $this->fromPriceAmount = $price->getAmount();
        $this->fromPriceCurrency = $price->getCurrency();
        return $this;
    }