Sylius\Behat\Context\Setup\PromotionContext::itGivesPercentageDiscountOnShippingToEveryOrder PHP Method

itGivesPercentageDiscountOnShippingToEveryOrder() public method

public itGivesPercentageDiscountOnShippingToEveryOrder ( Sylius\Component\Core\Model\PromotionInterface $promotion, $discount )
$promotion Sylius\Component\Core\Model\PromotionInterface
    public function itGivesPercentageDiscountOnShippingToEveryOrder(PromotionInterface $promotion, $discount)
    {
        $action = $this->actionFactory->createShippingPercentageDiscount($discount);
        $promotion->addAction($action);
        $this->objectManager->flush();
    }
PromotionContext