Skip to content
This repository was archived by the owner on Jan 17, 2020. It is now read-only.

Commit ee557b6

Browse files
authored
Apply fixes from StyleCI (#4)
1 parent 938b3a3 commit ee557b6

File tree

2 files changed

+30
-30
lines changed

2 files changed

+30
-30
lines changed

src/TimeRange.php

+13-13
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class TimeRange
1111

1212
/**
1313
* Create a new TimeRange instance.
14-
*
14+
*
1515
* @param string $timeRangeString
1616
* @param Carbon $carbonInstance
1717
* @return void
@@ -27,7 +27,7 @@ public function __construct($timeRangeString, $carbonInstance = null)
2727

2828
/**
2929
* Check if the string provided is a TimeRange formatted string.
30-
*
30+
*
3131
* @return bool
3232
*/
3333
public function isValidTimeRange()
@@ -37,7 +37,7 @@ public function isValidTimeRange()
3737

3838
/**
3939
* Check if the string provided is a valid hour:minute formatted string.
40-
*
40+
*
4141
* @return bool
4242
*/
4343
public function isValidHourMinute($hourMinute)
@@ -47,7 +47,7 @@ public function isValidHourMinute($hourMinute)
4747

4848
/**
4949
* Check if a specific hour:minute is in the timerange.
50-
*
50+
*
5151
* @param string $hourMinute The time in format hour:minute
5252
* @return bool
5353
*/
@@ -68,7 +68,7 @@ public function isInTimeRange($hourMinute)
6868

6969
/**
7070
* Get the start Carbon instance as 1st January 2018, and a specified hour.
71-
*
71+
*
7272
* @return Carbon
7373
*/
7474
public function getStartCarbonInstance()
@@ -78,7 +78,7 @@ public function getStartCarbonInstance()
7878

7979
/**
8080
* Get the end Carbon instance as 1st/2nd January 2018, at the right hour and minute.
81-
*
81+
*
8282
* @return Carbon
8383
*/
8484
public function getEndCarbonInstance()
@@ -88,7 +88,7 @@ public function getEndCarbonInstance()
8888

8989
/**
9090
* Difference in hours between the both ends.
91-
*
91+
*
9292
* @return int The difference, in hours.
9393
*/
9494
public function diffInHours()
@@ -102,7 +102,7 @@ public function diffInHours()
102102

103103
/**
104104
* Difference in minutes between the both ends.
105-
*
105+
*
106106
* @return int The difference, in minutes.
107107
*/
108108
public function diffInMinutes()
@@ -116,7 +116,7 @@ public function diffInMinutes()
116116

117117
/**
118118
* Get the hour of the starting part.
119-
*
119+
*
120120
* @return int
121121
*/
122122
public function getStartHour()
@@ -130,7 +130,7 @@ public function getStartHour()
130130

131131
/**
132132
* Get the minute of the starting part.
133-
*
133+
*
134134
* @return int
135135
*/
136136
public function getStartMinute()
@@ -144,7 +144,7 @@ public function getStartMinute()
144144

145145
/**
146146
* Get the hour of the ending part.
147-
*
147+
*
148148
* @return int
149149
*/
150150
public function getEndHour()
@@ -158,7 +158,7 @@ public function getEndHour()
158158

159159
/**
160160
* Get the minute of the ending part.
161-
*
161+
*
162162
* @return int
163163
*/
164164
public function getEndMinute()
@@ -174,7 +174,7 @@ public function getEndMinute()
174174
* Get the time range in array format.
175175
* This will return something like ['08:00', '17:00']
176176
* Use get[Start|End][Hour|Minute]() method to get the hours as integers.
177-
*
177+
*
178178
* @return array
179179
*/
180180
public function toArray()

src/Traits/HasSchedule.php

+17-17
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ trait HasSchedule
1616

1717
/**
1818
* Returns a morphOne relationship class of the schedule.
19-
*
19+
*
2020
* @return morphOne The relatinship.
2121
*/
2222
public function schedule()
@@ -26,7 +26,7 @@ public function schedule()
2626

2727
/**
2828
* Get the Schedule array or null if it doesn't have.
29-
*
29+
*
3030
* @return array|null The array with schedules or null.
3131
*/
3232
public function getSchedule()
@@ -36,7 +36,7 @@ public function getSchedule()
3636

3737
/**
3838
* Get the Exclusions array or null if it doesn't have.
39-
*
39+
*
4040
* @return array The array with exclusions.
4141
*/
4242
public function getExclusions()
@@ -46,8 +46,8 @@ public function getExclusions()
4646

4747
/**
4848
* 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.
5151
*/
5252
public function hasSchedule()
5353
{
@@ -56,7 +56,7 @@ public function hasSchedule()
5656

5757
/**
5858
* Set a new schedule.
59-
*
59+
*
6060
* @param array $scheduleArray The array with schedules.
6161
* @return array The schedule array.
6262
*/
@@ -77,7 +77,7 @@ public function setSchedule(array $scheduleArray = [])
7777

7878
/**
7979
* Update the model's schedule.
80-
*
80+
*
8181
* @param array $scheduleArray The array with schedules that should be replaced.
8282
* @return array The schedule array.
8383
*/
@@ -92,7 +92,7 @@ public function updateSchedule(array $scheduleArray)
9292

9393
/**
9494
* Set exclusions.
95-
*
95+
*
9696
* @param array $exclusionsArray The array with exclusions.
9797
* @return array The exclusions array.
9898
*/
@@ -111,7 +111,7 @@ public function setExclusions(array $exclusionsArray = [])
111111

112112
/**
113113
* Update exclusions (alias for setExclusions).
114-
*
114+
*
115115
* @param array $exclusionsArray The array with exclusions.
116116
* @return array The exclusions array.
117117
*/
@@ -122,7 +122,7 @@ public function updateExclusions(array $exclusionsArray)
122122

123123
/**
124124
* Delete the schedule of this model.
125-
*
125+
*
126126
* @return bool Wether the schedule was deleted or not.
127127
*/
128128
public function deleteSchedule()
@@ -132,7 +132,7 @@ public function deleteSchedule()
132132

133133
/**
134134
* Delete the exclusions of this model.
135-
*
135+
*
136136
* @return bool|array Wether the exclusions were cleared or not.
137137
*/
138138
public function deleteExclusions()
@@ -150,7 +150,7 @@ public function deleteExclusions()
150150

151151
/**
152152
* Check if the model is available on a certain day/date.
153-
*
153+
*
154154
* @param string|Carbon|DateTime $dateOrDay The datetime, date or the day.
155155
* @return bool Wether it is available on that day.
156156
*/
@@ -200,7 +200,7 @@ public function isUnavailableOn($dateOrDay)
200200

201201
/**
202202
* Check if the model is available on a certain day/date and time.
203-
*
203+
*
204204
* @param string|Carbon|DateTime $dateOrDay The datetime, date or the day.
205205
* @param string The time.
206206
* @return bool Wether it is available on that day, at a certain time.
@@ -246,7 +246,7 @@ public function isAvailableOnAt($dateOrDay, $time)
246246

247247
/**
248248
* Check if the model is unavailable on a certain day/date and time.
249-
*
249+
*
250250
* @param string|Carbon|DateTime $dateOrDay The datetime, date or the day.
251251
* @param string The time.
252252
* @return bool Wether it is unavailable on that day, at a certain time.
@@ -258,7 +258,7 @@ public function isUnavailableOnAt($dateOrDay, $time)
258258

259259
/**
260260
* Get the amount of hours on a certain day.
261-
*
261+
*
262262
* @param string|Carbon|DateTime $dateOrDay The datetime, date or the day.
263263
* @return int The amount of hours on that day.
264264
*/
@@ -302,8 +302,8 @@ public function getHoursOn($dateOrDay)
302302

303303
/**
304304
* 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.
307307
* @return int The amount of minutes on that day.
308308
*/
309309
public function getMinutesOn($dateOrDay)

0 commit comments

Comments
 (0)