1 | <?php |
||
7 | class DatesRange extends Model |
||
8 | { |
||
9 | |||
10 | protected $fromDate = null; |
||
11 | |||
12 | protected $toDate = null; |
||
13 | |||
14 | protected $mappingClasses = []; |
||
15 | |||
16 | protected $propNameMap = []; |
||
17 | |||
18 | /** |
||
19 | * Retrieve the fromDate property |
||
20 | * |
||
21 | * @return string|null |
||
22 | */ |
||
23 | 1 | public function getFromDate() |
|
24 | { |
||
25 | 1 | return $this->fromDate; |
|
26 | } |
||
27 | |||
28 | /** |
||
29 | * Set the fromDate property |
||
30 | * |
||
31 | * @param string $fromDate |
||
32 | * @return $this |
||
33 | */ |
||
34 | 1 | public function setFromDate($fromDate) |
|
39 | |||
40 | /** |
||
41 | * Retrieve the toDate property |
||
42 | * |
||
43 | * @return string|null |
||
44 | */ |
||
45 | 1 | public function getToDate() |
|
46 | { |
||
47 | 1 | return $this->toDate; |
|
48 | } |
||
49 | |||
50 | /** |
||
51 | * Set the toDate property |
||
52 | * |
||
53 | * @param string $toDate |
||
54 | * @return $this |
||
55 | */ |
||
56 | 1 | public function setToDate($toDate) |
|
61 | } |
||
62 |