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

thisPromotionHasExpired() public method

public thisPromotionHasExpired ( Sylius\Component\Core\Model\PromotionInterface $promotion )
$promotion Sylius\Component\Core\Model\PromotionInterface
    public function thisPromotionHasExpired(PromotionInterface $promotion)
    {
        $promotion->setEndsAt(new \DateTime('1 day ago'));
        $this->objectManager->flush();
    }
PromotionContext