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

c

parent f704aa97
No related branches found
No related tags found
No related merge requests found
......@@ -35,4 +35,8 @@ class Espece extends Objet
{
$this->prix_consultation = $prix_consultation;
}
public function str() {
return $this->nom;
}
}
\ No newline at end of file
......@@ -35,6 +35,10 @@ class Personne extends Objet
{
$this->prenom = $prenom;
}
public function str() {
return $this->prenom.$this->nom;
}
}
......
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