Add question details in validation email => DONE

This commit is contained in:
Bertrand 2012-06-09 23:09:51 +02:00
parent e0d31d291a
commit 267e5d9900

View File

@ -125,17 +125,17 @@ class Question
public function getCourse()
{
return $course;
return $this->course;
}
public function getQuestion()
{
return $question;
return $this->question;
}
public function getAnswer()
{
return $answers;
return $this->answers;
}