1 | <?php |
||
9 | class CreateFlightCommand implements CommandInterface |
||
10 | { |
||
11 | |||
12 | private $date; |
||
13 | private $lieuD; |
||
14 | private $lieuA; |
||
15 | private $heureD; |
||
16 | private $heureA; |
||
17 | private $BBC_ballons_idBBC_ballons; |
||
18 | private $nbrPax; |
||
19 | private $remarque; |
||
20 | private $incidents; |
||
21 | private $fk_type; |
||
22 | private $fk_pilot; |
||
23 | private $fk_organisateur; |
||
24 | private $kilometers; |
||
25 | private $cost; |
||
26 | private $fk_receiver; |
||
27 | private $justif_kilometers; |
||
28 | private $passengerNames; |
||
29 | private $groupedFlight; |
||
30 | |||
31 | /** |
||
32 | * @var array|int[] |
||
33 | */ |
||
34 | private $orderIds; |
||
35 | |||
36 | /** |
||
37 | * @return mixed |
||
38 | */ |
||
39 | public function getDate() |
||
43 | |||
44 | /** |
||
45 | * @param mixed $date |
||
46 | * |
||
47 | * @return CreateFlightCommand |
||
48 | */ |
||
49 | public function setDate($date) |
||
54 | |||
55 | /** |
||
56 | * @return mixed |
||
57 | */ |
||
58 | public function getLieuD() |
||
62 | |||
63 | /** |
||
64 | * @param mixed $lieuD |
||
65 | * |
||
66 | * @return CreateFlightCommand |
||
67 | */ |
||
68 | public function setLieuD($lieuD) |
||
73 | |||
74 | /** |
||
75 | * @return mixed |
||
76 | */ |
||
77 | public function getLieuA() |
||
81 | |||
82 | /** |
||
83 | * @param mixed $lieuA |
||
84 | * |
||
85 | * @return CreateFlightCommand |
||
86 | */ |
||
87 | public function setLieuA($lieuA) |
||
92 | |||
93 | /** |
||
94 | * @return mixed |
||
95 | */ |
||
96 | public function getHeureD() |
||
100 | |||
101 | /** |
||
102 | * @param mixed $heureD |
||
103 | * |
||
104 | * @return CreateFlightCommand |
||
105 | */ |
||
106 | public function setHeureD($heureD) |
||
111 | |||
112 | /** |
||
113 | * @return mixed |
||
114 | */ |
||
115 | public function getHeureA() |
||
119 | |||
120 | /** |
||
121 | * @param mixed $heureA |
||
122 | * |
||
123 | * @return CreateFlightCommand |
||
124 | */ |
||
125 | public function setHeureA($heureA) |
||
130 | |||
131 | /** |
||
132 | * @return mixed |
||
133 | */ |
||
134 | public function getBBCBallonsIdBBCBallons() |
||
138 | |||
139 | /** |
||
140 | * @param mixed $BBC_ballons_idBBC_ballons |
||
141 | * |
||
142 | * @return CreateFlightCommand |
||
143 | */ |
||
144 | public function setBBCBallonsIdBBCBallons($BBC_ballons_idBBC_ballons) |
||
149 | |||
150 | /** |
||
151 | * @return mixed |
||
152 | */ |
||
153 | public function getNbrPax() |
||
157 | |||
158 | /** |
||
159 | * @param mixed $nbrPax |
||
160 | * |
||
161 | * @return CreateFlightCommand |
||
162 | */ |
||
163 | public function setNbrPax($nbrPax) |
||
168 | |||
169 | /** |
||
170 | * @return mixed |
||
171 | */ |
||
172 | public function getRemarque() |
||
176 | |||
177 | /** |
||
178 | * @param mixed $remarque |
||
179 | * |
||
180 | * @return CreateFlightCommand |
||
181 | */ |
||
182 | public function setRemarque($remarque) |
||
187 | |||
188 | /** |
||
189 | * @return mixed |
||
190 | */ |
||
191 | public function getIncidents() |
||
195 | |||
196 | /** |
||
197 | * @param mixed $incidents |
||
198 | * |
||
199 | * @return CreateFlightCommand |
||
200 | */ |
||
201 | public function setIncidents($incidents) |
||
206 | |||
207 | /** |
||
208 | * @return mixed |
||
209 | */ |
||
210 | public function getFkType() |
||
214 | |||
215 | /** |
||
216 | * @param mixed $fk_type |
||
217 | * |
||
218 | * @return CreateFlightCommand |
||
219 | */ |
||
220 | public function setFkType($fk_type) |
||
225 | |||
226 | /** |
||
227 | * @return mixed |
||
228 | */ |
||
229 | public function getFkPilot() |
||
233 | |||
234 | /** |
||
235 | * @param mixed $fk_pilot |
||
236 | * |
||
237 | * @return CreateFlightCommand |
||
238 | */ |
||
239 | public function setFkPilot($fk_pilot) |
||
244 | |||
245 | /** |
||
246 | * @return mixed |
||
247 | */ |
||
248 | public function getFkOrganisateur() |
||
252 | |||
253 | /** |
||
254 | * @param mixed $fk_organisateur |
||
255 | * |
||
256 | * @return CreateFlightCommand |
||
257 | */ |
||
258 | public function setFkOrganisateur($fk_organisateur) |
||
263 | |||
264 | /** |
||
265 | * @return mixed |
||
266 | */ |
||
267 | public function getKilometers() |
||
271 | |||
272 | /** |
||
273 | * @param mixed $kilometers |
||
274 | * |
||
275 | * @return CreateFlightCommand |
||
276 | */ |
||
277 | public function setKilometers($kilometers) |
||
282 | |||
283 | /** |
||
284 | * @return mixed |
||
285 | */ |
||
286 | public function getCost() |
||
290 | |||
291 | /** |
||
292 | * @param mixed $cost |
||
293 | * |
||
294 | * @return CreateFlightCommand |
||
295 | */ |
||
296 | public function setCost($cost) |
||
301 | |||
302 | /** |
||
303 | * @return mixed |
||
304 | */ |
||
305 | public function getFkReceiver() |
||
309 | |||
310 | /** |
||
311 | * @param mixed $fk_receiver |
||
312 | * |
||
313 | * @return CreateFlightCommand |
||
314 | */ |
||
315 | public function setFkReceiver($fk_receiver) |
||
320 | |||
321 | /** |
||
322 | * @return mixed |
||
323 | */ |
||
324 | public function getJustifKilometers() |
||
328 | |||
329 | /** |
||
330 | * @param mixed $justif_kilometers |
||
331 | * |
||
332 | * @return CreateFlightCommand |
||
333 | */ |
||
334 | public function setJustifKilometers($justif_kilometers) |
||
339 | |||
340 | /** |
||
341 | * @return mixed |
||
342 | */ |
||
343 | public function getPassengerNames() |
||
347 | |||
348 | /** |
||
349 | * @param mixed $passengerNames |
||
350 | * |
||
351 | * @return CreateFlightCommand |
||
352 | */ |
||
353 | public function setPassengerNames($passengerNames) |
||
358 | |||
359 | /** |
||
360 | * @return mixed |
||
361 | */ |
||
362 | public function isGroupedFlight() |
||
366 | |||
367 | /** |
||
368 | * @param mixed $groupedFlight |
||
369 | * |
||
370 | * @return CreateFlightCommand |
||
371 | */ |
||
372 | public function setGroupedFlight($groupedFlight) |
||
377 | |||
378 | /** |
||
379 | * @return array |
||
380 | */ |
||
381 | public function getOrderIds() |
||
382 | { |
||
383 | return $this->orderIds; |
||
384 | } |
||
385 | |||
386 | /** |
||
387 | * @param array|int[] $orderIds |
||
388 | * |
||
389 | * @return CreateFlightCommand |
||
390 | */ |
||
391 | public function setOrderIds($orderIds) |
||
396 | |||
397 | /** |
||
398 | * @return bool |
||
399 | */ |
||
400 | public function hasOrderId(){ |
||
403 | } |