/** * Renvoie les DroitGroupes liés aux Groupes de cette collection * @return DroitGroupeCollection */ public function getDroitGroupes() { if (is_null($this->cacheDroitGroupes)) { $this->cacheDroitGroupes = DroitGroupeBusiness::getFromGroupes($this); $this->cacheDroitGroupes->store(); } return $this->cacheDroitGroupes; }
/** * @return void */ public function delete() { DroitGroupeBusiness::delete($this); }