Docs: Correct `@return` type for `rest_parse_date()`.

Props TimothyBlynJacobs.
Fixes #35224.
Built from https://develop.svn.wordpress.org/trunk@36086


git-svn-id: http://core.svn.wordpress.org/trunk@36051 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2015-12-25 20:41:26 +00:00
parent 8009f97f79
commit d9d21cf3ff
2 changed files with 3 additions and 3 deletions

View File

@ -601,14 +601,14 @@ function rest_cookie_collect_status() {
}
/**
* Parses an RFC3339 timestamp into a DateTime.
* Parses an RFC3339 time into a Unix timestamp.
*
* @since 4.4.0
*
* @param string $date RFC3339 timestamp.
* @param bool $force_utc Optional. Whether to force UTC timezone instead of using
* the timestamp's timezone. Default false.
* @return DateTime DateTime instance.
* @return int Unix timestamp.
*/
function rest_parse_date( $date, $force_utc = false ) {
if ( $force_utc ) {

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.5-alpha-36085';
$wp_version = '4.5-alpha-36086';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.