2
zantekk
8y

foreach ($daysOfWeek as $day) {
if ($day->getIndex() < 5) {
work();
} else {
continue;
}
}

Comments
Add Comment