Skip to content

Commit 8133ba0

Browse files
committed
Merge branch '7.1' into 7.2
* 7.1: Update scheduler.rst
2 parents 2e2afa7 + 9bfc9fa commit 8133ba0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scheduler.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ For example, if you want to send customer reports daily except for holiday perio
306306
}
307307

308308
// loop until you get the next run date that is not a holiday
309-
while (!$this->isHoliday($nextRun) {
309+
while ($this->isHoliday($nextRun)) {
310310
$nextRun = $this->inner->getNextRunDate($nextRun);
311311
}
312312

0 commit comments

Comments
 (0)