Exemplo n.º 1
0
 public function load(ObjectManager $manager)
 {
     $round = new Round();
     $round->setStarted(true);
     $round->setWalletAccount('ponzi');
     $manager->persist($round);
     $manager->flush();
 }
Exemplo n.º 2
0
 public function defineWalletAccount(Round $round)
 {
     $round->setWalletAccount($this->walletAccountPrefix . $round->getId());
     $this->em->flush($round);
 }