@@ -16,7 +16,7 @@ trait HasSchedule
16
16
17
17
/**
18
18
* Returns a morphOne relationship class of the schedule.
19
- *
19
+ *
20
20
* @return morphOne The relatinship.
21
21
*/
22
22
public function schedule ()
@@ -26,7 +26,7 @@ public function schedule()
26
26
27
27
/**
28
28
* Get the Schedule array or null if it doesn't have.
29
- *
29
+ *
30
30
* @return array|null The array with schedules or null.
31
31
*/
32
32
public function getSchedule ()
@@ -36,7 +36,7 @@ public function getSchedule()
36
36
37
37
/**
38
38
* Get the Exclusions array or null if it doesn't have.
39
- *
39
+ *
40
40
* @return array The array with exclusions.
41
41
*/
42
42
public function getExclusions ()
@@ -46,8 +46,8 @@ public function getExclusions()
46
46
47
47
/**
48
48
* Check if the model has a schedule set.
49
- *
50
- * @return boolean If the binded model has a schedule already set.
49
+ *
50
+ * @return bool If the binded model has a schedule already set.
51
51
*/
52
52
public function hasSchedule ()
53
53
{
@@ -56,7 +56,7 @@ public function hasSchedule()
56
56
57
57
/**
58
58
* Set a new schedule.
59
- *
59
+ *
60
60
* @param array $scheduleArray The array with schedules.
61
61
* @return array The schedule array.
62
62
*/
@@ -77,7 +77,7 @@ public function setSchedule(array $scheduleArray = [])
77
77
78
78
/**
79
79
* Update the model's schedule.
80
- *
80
+ *
81
81
* @param array $scheduleArray The array with schedules that should be replaced.
82
82
* @return array The schedule array.
83
83
*/
@@ -92,7 +92,7 @@ public function updateSchedule(array $scheduleArray)
92
92
93
93
/**
94
94
* Set exclusions.
95
- *
95
+ *
96
96
* @param array $exclusionsArray The array with exclusions.
97
97
* @return array The exclusions array.
98
98
*/
@@ -111,7 +111,7 @@ public function setExclusions(array $exclusionsArray = [])
111
111
112
112
/**
113
113
* Update exclusions (alias for setExclusions).
114
- *
114
+ *
115
115
* @param array $exclusionsArray The array with exclusions.
116
116
* @return array The exclusions array.
117
117
*/
@@ -122,7 +122,7 @@ public function updateExclusions(array $exclusionsArray)
122
122
123
123
/**
124
124
* Delete the schedule of this model.
125
- *
125
+ *
126
126
* @return bool Wether the schedule was deleted or not.
127
127
*/
128
128
public function deleteSchedule ()
@@ -132,7 +132,7 @@ public function deleteSchedule()
132
132
133
133
/**
134
134
* Delete the exclusions of this model.
135
- *
135
+ *
136
136
* @return bool|array Wether the exclusions were cleared or not.
137
137
*/
138
138
public function deleteExclusions ()
@@ -150,7 +150,7 @@ public function deleteExclusions()
150
150
151
151
/**
152
152
* Check if the model is available on a certain day/date.
153
- *
153
+ *
154
154
* @param string|Carbon|DateTime $dateOrDay The datetime, date or the day.
155
155
* @return bool Wether it is available on that day.
156
156
*/
@@ -200,7 +200,7 @@ public function isUnavailableOn($dateOrDay)
200
200
201
201
/**
202
202
* Check if the model is available on a certain day/date and time.
203
- *
203
+ *
204
204
* @param string|Carbon|DateTime $dateOrDay The datetime, date or the day.
205
205
* @param string The time.
206
206
* @return bool Wether it is available on that day, at a certain time.
@@ -246,7 +246,7 @@ public function isAvailableOnAt($dateOrDay, $time)
246
246
247
247
/**
248
248
* Check if the model is unavailable on a certain day/date and time.
249
- *
249
+ *
250
250
* @param string|Carbon|DateTime $dateOrDay The datetime, date or the day.
251
251
* @param string The time.
252
252
* @return bool Wether it is unavailable on that day, at a certain time.
@@ -258,7 +258,7 @@ public function isUnavailableOnAt($dateOrDay, $time)
258
258
259
259
/**
260
260
* Get the amount of hours on a certain day.
261
- *
261
+ *
262
262
* @param string|Carbon|DateTime $dateOrDay The datetime, date or the day.
263
263
* @return int The amount of hours on that day.
264
264
*/
@@ -302,8 +302,8 @@ public function getHoursOn($dateOrDay)
302
302
303
303
/**
304
304
* Get the amount of minutes on a certain day.
305
- *
306
- * @param string|Carbon|DateTime $dateOrDay The datetime, date or the day.
305
+ *
306
+ * @param string|Carbon|DateTime $dateOrDay The datetime, date or the day.
307
307
* @return int The amount of minutes on that day.
308
308
*/
309
309
public function getMinutesOn ($ dateOrDay )
0 commit comments