예제 #1
0
 /**
  * @Given /^(?:|he|she) abandoned (the cart) (\d+) (day|days|hour|hours) ago$/
  */
 public function theyAbandonedTheirCart(OrderInterface $cart, $amount, $time)
 {
     $cart->setUpdatedAt(new \DateTime('-' . $amount . ' ' . $time));
     $this->orderManager->flush();
 }