Total Complexity | 5 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class RdvPointRetraitAcheminementResult extends PointRetraitAcheminementResult |
||
13 | { |
||
14 | /** |
||
15 | * The rdv |
||
16 | * @var bool |
||
17 | */ |
||
18 | public $rdv; |
||
19 | /** |
||
20 | * Constructor method for rdvPointRetraitAcheminementResult |
||
21 | * @uses RdvPointRetraitAcheminementResult::setRdv() |
||
22 | * @param bool $rdv |
||
23 | */ |
||
24 | public function __construct($rdv = null) |
||
25 | { |
||
26 | $this |
||
27 | ->setRdv($rdv); |
||
28 | } |
||
29 | /** |
||
30 | * Get rdv value |
||
31 | * @return bool|null |
||
32 | */ |
||
33 | public function getRdv() |
||
36 | } |
||
37 | /** |
||
38 | * Set rdv value |
||
39 | * @param bool $rdv |
||
40 | * @return \ColissimoPickupPoint\StructType\RdvPointRetraitAcheminementResult |
||
41 | */ |
||
42 | public function setRdv($rdv = null) |
||
52 |