1 | <?php |
||
7 | class Schedule extends Model |
||
8 | { |
||
9 | protected $workingDaysFrom = null; |
||
10 | |||
11 | protected $workingDaysTill = null; |
||
12 | |||
13 | protected $workingHoursFrom = null; |
||
14 | |||
15 | protected $workingHoursTill = null; |
||
16 | |||
17 | /** |
||
18 | * Retrieve the workingDaysFrom property |
||
19 | * |
||
20 | * @return int|null |
||
21 | */ |
||
22 | 5 | public function getWorkingDaysFrom() |
|
26 | |||
27 | /** |
||
28 | * Retrieve the workingDaysTill property |
||
29 | * |
||
30 | * @return int|null |
||
31 | */ |
||
32 | 5 | public function getWorkingDaysTill() |
|
36 | |||
37 | /** |
||
38 | * Retrieve the workingHoursFrom property |
||
39 | * |
||
40 | * @return string|null |
||
41 | */ |
||
42 | 5 | public function getWorkingHoursFrom() |
|
46 | |||
47 | /** |
||
48 | * Retrieve the workingHoursTill property |
||
49 | * |
||
50 | * @return string|null |
||
51 | */ |
||
52 | 5 | public function getWorkingHoursTill() |
|
56 | } |
||
57 |