Skip to content

Commit

Permalink
coding standard fix
Browse files Browse the repository at this point in the history
  • Loading branch information
marekdedic committed Oct 8, 2023
1 parent 66d0bbd commit 9eb433b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ private function countDays(array $terms): int
foreach ($terms as $term) {
$date = $term->startDate;

while($date->lessThanOrEquals($term->endDate)) {
while ($date->lessThanOrEquals($term->endDate)) {
$days[] = $date;
$date = $date->addDay();
}
Expand Down

0 comments on commit 9eb433b

Please sign in to comment.