Skip to content

Commit

Permalink
Merge branch '7.0' into 7.1
Browse files Browse the repository at this point in the history
* 7.0:
  Update scheduler.rst
  • Loading branch information
javiereguiluz committed Jun 12, 2024
2 parents 46bceaf + 5021747 commit 9bfc9fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scheduler.rst
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ For example, if you want to send customer reports daily except for holiday perio
}

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

Expand Down

0 comments on commit 9bfc9fa

Please sign in to comment.