Remove trailing whitespace

This commit is contained in:
Kijin Sung 2023-01-17 20:57:44 +09:00
parent 3b0030e82b
commit a9f72a5cd2
81 changed files with 2455 additions and 2455 deletions

View file

@ -9,7 +9,7 @@ class Calendar
{
/**
* This method returns the English name of a month, e.g. 9 = 'September'.
*
*
* @param int $month_number
* @param bool $long_format (optional, default is true)
* @return string
@ -21,16 +21,16 @@ class Calendar
{
return false;
}
return date($long_format ? 'F' : 'M', mktime(0, 0, 0, $month_number, 1));
}
/**
* This method returns the day on which a month begins.
*
*
* 0 = Sunday, 1 = Monday, 2 = Tuesday, 3 = Wednesday, 4 = Thursday, 5 = Friday, 6 = Saturday.
* If you do not specify a year, the current year is assumed.
*
*
* @param int $month_number
* @param int $year (optional)
* @return int
@ -42,16 +42,16 @@ class Calendar
{
return false;
}
return (int)date('w', mktime(0, 0, 0, $month_number, 1, $year ?: date('Y')));
}
/**
* This method returns the number of days in a month, e.g. February 2016 has 29 days.
*
*
* If you do not specify a year, the current year is assumed.
* You must specify a year to get the number of days in February.
*
*
* @param int $month_number
* @param int $year (optional)
* @return int
@ -63,19 +63,19 @@ class Calendar
{
return false;
}
return (int)date('t', mktime(0, 0, 0, $month_number, 1, $year ?: date('Y')));
}
/**
* This method returns a complete calendar for a month.
*
*
* The return value is an array with six members, each representing a week.
* Each week is an array with seven members, each representing a day.
* 6 weeks are returned. Empty cells are represented by nulls.
*
*
* If you do not specify a year, the current year is assumed.
*
*
* @param int $month_number
* @param int $year (optional)
* @param int $start_dow (optional)
@ -96,13 +96,13 @@ class Calendar
{
$year = date('Y');
}
$start = self::getMonthStartDayOfWeek($month_number, $year);
$count = self::getMonthDays($month_number, $year);
$initial_blank_cells = (7 + $start - $start_dow) % 7;
$final_blank_cells = 42 - $count - $initial_blank_cells;
$temp = array();
for ($i = 0; $i < $initial_blank_cells; $i++)
{
$temp[] = null;
@ -115,7 +115,7 @@ class Calendar
{
$temp[] = null;
}
$return = array();
for ($i = 0; $i < 6; $i++)
{
@ -126,7 +126,7 @@ class Calendar
}
$return[] = $week;
}
return $return;
}
}