id = $id; $this->nomPrenom = $nomPrenom; $this->adresse = $adresse; $this->codePostal = $codePostal; $this->ville = $ville; $this->courriel = $courriel; $this->versements = array(); } /** * return copie d'une personne */ public function clone() { return new Personne( $this->id, $this->nomPrenom, $this->adresse, $this->codePostal, $this->ville, $this->courriel); } /** * ajouter un versement * @param $idActivite * @param $idTarif * @param $montant * @param $tauxReduction */ public function ajouterVersement( $idActivite, $idTarif, $montant, $tauxReduction ) { $this->versements[] = new Versement( $idActivite, $idTarif, $montant, $tauxReduction ); } }