AppBundle\Entity\PromotionSubject::removePromotion PHP Метод

removePromotion() публичный Метод

public removePromotion ( Sylius\Component\Promotion\Model\PromotionInterface $promotion )
$promotion Sylius\Component\Promotion\Model\PromotionInterface
    public function removePromotion(PromotionInterface $promotion)
    {
        if ($this->hasPromotion($promotion)) {
            $this->promotions->removeElement($promotion);
        }
    }