Deprecate DBM::date()

This commit is contained in:
Hypolite Petovan 2018-02-03 21:39:53 -05:00
parent 143b453c17
commit 7333296b8d
1 changed files with 2 additions and 8 deletions

View File

@ -114,19 +114,13 @@ class DBM
/**
* Checks Converts any date string into a SQL compatible date string
*
* @deprecated since version 3.6
* @param string $date a date string in any format
*
* @return string SQL style date string
*/
public static function date($date = 'now')
{
$timestamp = strtotime($date);
// Don't allow lower date strings as '0001-01-01 00:00:00'
if ($timestamp < -62135596800) {
$timestamp = -62135596800;
}
return date(DateTimeFormat::MYSQL, (int)$timestamp);
return DateTimeFormat::utc($date);
}
}