Exemplo n.º 1
0
 /**
  * @Given /^(the customer) subscribed to the newsletter$/
  */
 public function theCustomerSubscribedToTheNewsletter(CustomerInterface $customer)
 {
     $customer->setSubscribedToNewsletter(true);
     $this->customerManager->flush();
 }