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

c

parent 34639b66
No related branches found
No related tags found
No related merge requests found
......@@ -107,8 +107,8 @@ class Facture extends Objet
}
public function str() {
$animal = new Animal()
$animal->select($this->animal)
$animal = new Animal();
$animal->select($this->animal);
$tostr = $animal->str().' : '.$this->prix_total;
return $tostr;
}
......
......@@ -78,8 +78,8 @@ class Ordonnance extends Objet
}
public function str() {
$animal = new Animal()
$animal->select($this->animal)
$animal = new Animal();
$animal->select($this->animal);
$tostr = $animal->str().' : '.$this->date;
return $tostr;
}
......
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