num = $numQuestion; $this->nom = $nom; $this->type = $type; $this->questions = $questions; $this->introduction = $introduction; } // Getters function getNum() { return $this->num; } function getNom() { return $this->nom; } function getType() { return $this->type; } function getQuestions() { return $this->questions; } function getIntroduction() { return $this->introduction; } // Setters function setIntroduction($introduction) { $this->introduction = $introduction; } function setNum($num) { $this->num = $num; } function setNom($nom) { $this->nom = $nom; } function setType($type) { $this->type = $type; } function setQuestions($questions) { $this->questions = $questions; } }