Skip to content
Snippets Groups Projects
Commit 7b7edc15 authored by Matthieu Guffroy's avatar Matthieu Guffroy
Browse files

fix syntax error

parent ea2d4ae0
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,7 @@ class Form {
}
public function getTitle() {
return "Ajouter un ".get_class($this->objet);
return "Ajouter un ".get_class($this->object);
}
}
\ No newline at end of file
......@@ -34,7 +34,7 @@ class Objet
public function getForm()
{
$form = new Form();
$form->setObjet($this);
$form->setObject($this);
return $form;
}
}
\ 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