Example #1
0
 private function setClub()
 {
     $clubName = "PBM Bikers";
     $club = $this->manager->getRepository("OesteveGrupetaBundle:Club")->findOneBy(array('name' => $clubName));
     if (!$club) {
         $club = new Club();
         $club->setName($clubName);
         $this->manager->persist($club);
         $this->manager->flush();
     }
     return $club;
 }