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 | */ |
||
27 | private $id; |
||
28 | |||
29 | /** |
||
30 | * @var SurveyType |
||
31 | * @Assert\Type("object") |
||
32 | * @Assert\Valid |
||
33 | * @ORM\ManyToOne(targetEntity="AppBundle\Entity\Survey\SurveyType", inversedBy="surveys") |
||
34 | * @ORM\JoinColumn(onDelete="SET NULL") |
||
35 | */ |
||
36 | private $type; |
||
37 | |||
38 | /** |
||
39 | * @var string |
||
40 | * @Assert\NotBlank() |
||
41 | * @Assert\Type("string") |
||
42 | * @ORM\Column(type="string") |
||
43 | */ |
||
44 | private $status; |
||
45 | |||
46 | /** |
||
47 | * @var bool |
||
48 | * @Assert\NotBlank() |
||
49 | * @Assert\Type("bool") |
||
50 | * @ORM\Column(type="boolean") |
||
51 | */ |
||
52 | private $reviewed; |
||
53 | |||
54 | /** |
||
55 | * @var User |
||
56 | * @Assert\Type("object") |
||
57 | * @Assert\Valid |
||
58 | * @ORM\ManyToOne(targetEntity="AppBundle\Entity\User", inversedBy="surveys") |
||
59 | * @ORM\JoinColumn(onDelete="CASCADE") |
||
60 | */ |
||
61 | private $user; |
||
62 | |||
63 | /** |
||
64 | * @var ArrayCollection[SurveyAnswer] |
||
65 | * @ORM\OneToMany(targetEntity="SurveyAnswer", mappedBy="survey", cascade={"persist", "remove"}) |
||
66 | */ |
||
67 | private $answers; |
||
68 | |||
69 | 1 | public function __construct() |
|
75 | |||
76 | /** |
||
77 | * Get id. |
||
78 | * |
||
79 | * @return int |
||
80 | */ |
||
81 | 3 | public function getId() |
|
85 | |||
86 | /** |
||
87 | * Set type. |
||
88 | * |
||
89 | * @param SurveyType $type |
||
90 | * |
||
91 | * @return Survey |
||
92 | */ |
||
93 | 1 | public function setType(SurveyType $type) |
|
99 | |||
100 | /** |
||
101 | * Get type. |
||
102 | * |
||
103 | * @return SurveyType |
||
104 | */ |
||
105 | 7 | public function getType() |
|
109 | |||
110 | /** |
||
111 | * Set status. |
||
112 | * |
||
113 | * @param string $status |
||
114 | * |
||
115 | * @return Survey |
||
116 | */ |
||
117 | 1 | public function setStatus($status) |
|
123 | |||
124 | /** |
||
125 | * Get status. |
||
126 | * |
||
127 | * @return string |
||
128 | */ |
||
129 | 3 | public function getStatus() |
|
133 | |||
134 | /** |
||
135 | * Set review. |
||
136 | * |
||
137 | * @param bool $review |
||
138 | * |
||
139 | * @return Survey |
||
140 | */ |
||
141 | 1 | public function setReviewed($review) |
|
147 | |||
148 | /** |
||
149 | * Get review. |
||
150 | * |
||
151 | * @return bool |
||
152 | */ |
||
153 | 2 | public function isReviewed() |
|
157 | |||
158 | /** |
||
159 | * Set user. |
||
160 | * |
||
161 | * @param User $user |
||
162 | * |
||
163 | * @return Survey |
||
164 | */ |
||
165 | 1 | public function setUser(User $user) |
|
171 | |||
172 | /** |
||
173 | * Get user. |
||
174 | * |
||
175 | * @return User |
||
176 | */ |
||
177 | 5 | public function getUser() |
|
181 | |||
182 | /** |
||
183 | * @param SurveyAnswer $answer |
||
184 | * |
||
185 | * @return Survey |
||
186 | */ |
||
187 | public function addSurveyAnswer(SurveyAnswer $answer) |
||
196 | |||
197 | /** |
||
198 | * Get answers. |
||
199 | * |
||
200 | * @return ArrayCollection |
||
201 | */ |
||
202 | public function getAnswers() |
||
206 | |||
207 | /** |
||
208 | * Get questions. |
||
209 | * |
||
210 | * @return array |
||
211 | */ |
||
212 | 1 | public function getQuestions() |
|
223 | } |
||
224 |
Adding an explicit array definition is generally preferable to implicit array definition as it guarantees a stable state of the code.
Let’s take a look at an example:
As you can see in this example, the array
$myArray
is initialized the first time when the foreach loop is entered. You can also see that the value of thebar
key is only written conditionally; thus, its value might result from a previous iteration.This might or might not be intended. To make your intention clear, your code more readible and to avoid accidental bugs, we recommend to add an explicit initialization $myArray = array() either outside or inside the foreach loop.