Cron\Schedule\CrontabSchedule::checkDayOfWeek PHP Method

checkDayOfWeek() protected method

Check if the day of the week matches.
protected checkDayOfWeek ( DateTime $now ) : boolean | null
$now DateTime
return boolean | null
    protected function checkDayOfWeek(\DateTime $now)
    {
        return $this->checkPart('dow', 0, 6, ['w'], $now);
    }