id = $id; $this->nomPrenom = $nomPrenom; $this->adresse = $adresse; $this->ville = $ville; $this->codePostal = $codePostal; $this->courriel = $courriel; $this->versements = array(); } /* * ajouter un versement */ public function ajouterVersement( $idActivite, $idTarif, $montant ) { // var_dump($this); $this->versements[] = new Versement( $idActivite, $idTarif, $montant ); // var_dump($this); } }