-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSurveyFormModel.php
More file actions
67 lines (59 loc) · 1.71 KB
/
Copy pathSurveyFormModel.php
File metadata and controls
67 lines (59 loc) · 1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?php
class SurveyFormModel {
private $name ;
private $email;
private $age ;
private $currentRole;
private $friendFreeCodeCamp;
private $featureOfFreecodecamp ;
private $improveField;
private $suggestions ;
public function set_name ($name){
$this->name = $name ;
}
public function set_email ($email){
$this->email = $email ;
}
public function set_age ($age){
$this->age = $age ;
}
public function set_currentRole ($currentRole){
$this->currentRole = $currentRole ;
}
public function set_friendFreeCodeCamp ($friendFreeCodeCamp){
$this->friendFreeCodeCamp = $friendFreeCodeCamp ;
}
public function set_featureOfFreecodecamp ($featureOfFreecodecamp){
$this->featureOfFreecodecamp = $featureOfFreecodecamp ;
}
public function set_improveField ($improveField){
$this->improveField = $improveField ;
}
public function set_suggestions ($suggestions){
$this->suggestions = $suggestions ;
}
public function get_name(){
return $this->name;
}
public function get_email(){
return $this->email;
}
public function get_age(){
return $this->age;
}
public function get_currentRole(){
return $this->currentRole;
}
public function get_friendFreeCodeCamp(){
return $this->friendFreeCodeCamp;
}
public function get_featureOfFreecodecamp(){
return $this->featureOfFreecodecamp;
}
public function get_improveField(){
return $this->improveField;
}
public function get_suggestions(){
return $this->suggestions;
}
}