Sonata\ProductBundle\Entity\BaseProduct::removeDelivery PHP Method

removeDelivery() public method

public removeDelivery ( Sonata\Component\Product\DeliveryInterface $delivery )
$delivery Sonata\Component\Product\DeliveryInterface
    public function removeDelivery(DeliveryInterface $delivery)
    {
        if ($this->deliveries->contains($delivery)) {
            $this->deliveries->removeElement($delivery);
        }
    }