From e614170d19485c3a0dd3a3a57bf08d1cbdaa1164 Mon Sep 17 00:00:00 2001 From: clement <clemmercier45@gmail.com> Date: Tue, 17 Jun 2014 16:54:07 +0200 Subject: [PATCH] correction --- class/facture.php | 30 +++++++++++++++--------------- class/race.php | 8 ++++---- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/class/facture.php b/class/facture.php index 8ab7aa5..89d96b0 100644 --- a/class/facture.php +++ b/class/facture.php @@ -40,43 +40,43 @@ class Facture extends Objet $this->animal = $animal; } - public function date_edition() + public function dateEdition() { return $this->date_edition; } - public function setDate_edition($date_edition) + public function setDateEdition($dateEdition) { - $this->date_edition = $date_edition; + $this->dateEdition = $dateEdition; } - public function date_paiement() + public function datePaiement() { - return $this->date_paiement; + return $this->datePaiement; } - public function setDate_paiement($date_paiement) + public function setDatePaiement($datePaiement) { - $this->date_paiement = $date_paiement; + $this->datePaiement = $datePaiement; } - public function moyen_paiement() + public function moyenPaiement() { - return $this->moyen_paiement; + return $this->moyenPaiement; } - public function setMoyen_paiement($moyen_paiement) + public function setMoyenPaiement($moyenPaiement) { - $this->moyen_paiement = $moyen_paiement; + $this->moyenPaiement = $moyenPaiement; } - public function prix_total() + public function prixTotal() { - return $this->prix_total; + return $this->prixTotal; } - public function setPrix_total($prix_total) + public function setPrixTotal($prixTotal) { - $this->prix_total = $prix_total; + $this->prixTotal = $prixTotal; } } \ No newline at end of file diff --git a/class/race.php b/class/race.php index 1e6151b..affd104 100644 --- a/class/race.php +++ b/class/race.php @@ -26,13 +26,13 @@ class Race extends Objet $this->espece = $espece; } - public function prix_consult() + public function prixIntervention() { - return $this->prix_intervention; + return $this->prixIntervention; } - public function setPrix_intervention($prix_intervention) + public function setPrixIntervention($prixIntervention) { - $this->prix_intervention = $prix_intervention; + $this->prixIntervention = $prixIntervention; } } \ No newline at end of file -- GitLab