Ejemplo n.º 1
0
 /**
  * Constructor
  */
 public function __construct()
 {
     $this->entries = new \Doctrine\Common\Collections\ArrayCollection();
     // Create default minimum entries
     for ($i = 0; $i < 3; $i++) {
         $entry = new Entry();
         if ($i == 0) {
             $entry->setPoolAdmin(true);
         }
         $this->addEntry($entry);
     }
 }