Exemplo n.º 1
0
 /**
  * Renvoie les Qgs liés aux Joueurs de cette collection
  * @return QgCollection
  */
 public function getQgs()
 {
     if (is_null($this->cacheQgs)) {
         $this->cacheQgs = QgBusiness::getFromJoueurs($this);
         $this->cacheQgs->store();
     }
     return $this->cacheQgs;
 }