/**
  * {@inheritDoc}
  */
 public function load(ObjectManager $manager)
 {
     $customer = new Customer();
     $customer->setFirstname("Bampis");
     $customer->setSurname("Sykovaridis");
     $customer->setBirthday(new \DateTime());
     $customer->setCity("Serres");
     $customer->setAddress("Ritsou");
     $customer->setEmail("*****@*****.**");
     $customer->setPhone("2323232");
     $customer->setCountry("Greece");
     $manager->persist($customer);
     $manager->flush();
 }
Exemplo n.º 2
0
 /**
  * {@inheritDoc}
  */
 public function load(ObjectManager $manager)
 {
     $customer1 = new Customer();
     $customer1->setName('João Silva');
     $customer1->setEmail('*****@*****.**');
     $customer1->setUsername('joao');
     $customer1->setSalt(md5(uniqid()));
     $customer1->setAddress($this->getReference('address-customer1'));
     $encoder = $this->container->get('security.encoder_factory')->getEncoder($customer1);
     $customer1->setPassword($encoder->encodePassword('123456', $customer1->getSalt()));
     $customer2 = new Customer();
     $customer2->setName('Maria Santos');
     $customer2->setEmail('*****@*****.**');
     $customer2->setUsername('maria');
     $customer2->setSalt(md5(uniqid()));
     $customer2->setAddress($this->getReference('address-customer2'));
     $encoder = $this->container->get('security.encoder_factory')->getEncoder($customer2);
     $customer2->setPassword($encoder->encodePassword('123456', $customer2->getSalt()));
     $manager->persist($customer1);
     $manager->persist($customer2);
     $manager->flush();
     $this->addReference('customer1', $customer1);
     $this->addReference('customer2', $customer2);
 }