Skip to content
Snippets Groups Projects
Commit e25d9f91 authored by clement's avatar clement
Browse files

c

parent e7920fbd
No related branches found
No related tags found
No related merge requests found
......@@ -109,7 +109,7 @@ class Facture extends Objet
public function str() {
$animal = new Animal();
$animal->select($this->animal);
$tostr = $animal->str().' : '.$this->prix_total;
$tostr = $animal->str().' '.$this->prix_total;
return $tostr;
}
}
\ No newline at end of file
......@@ -80,7 +80,7 @@ class Ordonnance extends Objet
public function str() {
$animal = new Animal();
$animal->select($this->animal);
$tostr = $animal->str().' : '.$this->date;
$tostr = $animal->str().' '.$this->date;
return $tostr;
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment