1 | <?php |
||
16 | class Survey |
||
17 | { |
||
18 | use ORMBehaviors\Timestampable\Timestampable; |
||
19 | |||
20 | /** |
||
21 | * @var int |
||
22 | * |
||
23 | * @ORM\Column(type="integer") |
||
24 | * @ORM\Id |
||
25 | * @ORM\GeneratedValue(strategy="AUTO") |
||
26 | * @Groups({"group1"}) |
||
27 | */ |
||
28 | private $id; |
||
29 | |||
30 | /** |
||
31 | * @var SurveyType |
||
32 | * @Assert\Type("object") |
||
33 | * @Assert\Valid |
||
34 | * @ORM\ManyToOne(targetEntity="SurveyType", inversedBy="surveys") |
||
35 | * @Groups({"group1"}) |
||
36 | */ |
||
37 | private $type; |
||
38 | |||
39 | /** |
||
40 | * @var string |
||
41 | * @Assert\NotBlank() |
||
42 | * @Assert\Type("string") |
||
43 | * @ORM\Column(type="string") |
||
44 | * @Groups({"group1"}) |
||
45 | */ |
||
46 | private $status = 'current'; |
||
47 | |||
48 | /** |
||
49 | * @var User |
||
50 | * @Assert\Type("object") |
||
51 | * @Assert\Valid |
||
52 | * @ORM\ManyToOne(targetEntity="User", inversedBy="surveys") |
||
53 | */ |
||
54 | private $user; |
||
55 | |||
56 | /** |
||
57 | * @var ArrayCollection[SurveyAnswer] |
||
58 | * @ORM\OneToMany(targetEntity="SurveyAnswer", mappedBy="survey", cascade={"persist", "remove"}) |
||
59 | */ |
||
60 | private $answers; |
||
61 | |||
62 | 1 | public function __construct() |
|
66 | |||
67 | /** |
||
68 | * Get id. |
||
69 | * |
||
70 | * @return int |
||
71 | */ |
||
72 | 3 | public function getId() |
|
76 | |||
77 | /** |
||
78 | * Set type. |
||
79 | * |
||
80 | * @param SurveyType $type |
||
81 | * |
||
82 | * @return Survey |
||
83 | */ |
||
84 | 1 | public function setType(SurveyType $type) |
|
90 | |||
91 | /** |
||
92 | * Get type. |
||
93 | * |
||
94 | * @return SurveyType |
||
95 | */ |
||
96 | 7 | public function getType() |
|
100 | |||
101 | /** |
||
102 | * Set status. |
||
103 | * |
||
104 | * @param string $status |
||
105 | * |
||
106 | * @return Survey |
||
107 | */ |
||
108 | 1 | public function setStatus($status) |
|
114 | |||
115 | /** |
||
116 | * Get status. |
||
117 | * |
||
118 | * @return string |
||
119 | */ |
||
120 | 3 | public function getStatus() |
|
124 | |||
125 | /** |
||
126 | * Set user. |
||
127 | * |
||
128 | * @param User $user |
||
129 | * |
||
130 | * @return Survey |
||
131 | */ |
||
132 | 1 | public function setUser(User $user) |
|
138 | |||
139 | /** |
||
140 | * Get user. |
||
141 | * |
||
142 | * @return User |
||
143 | */ |
||
144 | 4 | public function getUser() |
|
148 | |||
149 | /** |
||
150 | * Get answers. |
||
151 | * |
||
152 | * @return ArrayCollection |
||
153 | */ |
||
154 | public function getAnswers() |
||
155 | { |
||
156 | return $this->answers; |
||
157 | } |
||
158 | |||
159 | /** |
||
160 | * Get DateTime. |
||
161 | * |
||
162 | * @return \DateTime |
||
163 | * @Groups({"group1", "group2"}) |
||
164 | */ |
||
165 | 2 | public function getCreatedAt() |
|
169 | |||
170 | /** |
||
171 | * Get DateTime. |
||
172 | * |
||
173 | * @return \DateTime |
||
174 | * @Groups({"group1", "group2"}) |
||
175 | */ |
||
176 | 3 | public function getUpdatedAt() |
|
180 | } |
||
181 |