/**
* WorkDay::__construct()
*
* @param array $holidaysTemplate
* @param array $weekDaySchedules
* @return
*//**
* Is it a workday
*
* @param string|int|DateTimeInterface $anyDate
* @return bool
*//**
* is it a holiday
*
* @param string|int|DateTimeInterface $anyDate
* @return bool
*//**
* Return info for a special day
*
* @param string|int|DateTimeInterface $anyDate
* @return null|array
*//**
* espacial dates marked and holiday
*
* @param int|null $year
* @return array with espacial dates marked and holiday
*//**
* Holidays
*
* @param int|null $year
* @return array
*//**
* WorkDay::get_weekDaySchedule()
*
* @return array
*//**
* WorkDay::get_holidaysTemplate()
*
* @return array
*//**
* Checks if workHoursByWeekDay is valid.
*
* @param array $workHoursByWeekDay
* @throws Exception
* @return array
*/Disclaimer: Auto generated file. Please help us setting parameters to useful values and extending the examples.
/**
* WorkDay::__construct()
*
* @param array $holidaysTemplate
* @param array $weekDaySchedules
* @return
*/
/*
$workDay = new WorkDay(array $holidaysTemplate = null, array $weekDaySchedules = null);
*/
$workDay = new WorkDay();
|