Add missing parameter and return descriptions to the DocBlock for wp_xmlrpc_server->_convert_date_gmt().

See #32246.


git-svn-id: https://develop.svn.wordpress.org/trunk@32564 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Drew Jaynes 2015-05-23 19:40:35 +00:00
parent e3b95fa4d6
commit 4b70ff7721

View File

@ -717,9 +717,9 @@ class wp_xmlrpc_server extends IXR_Server {
* *
* @access protected * @access protected
* *
* @param string $date_gmt * @param string $date_gmt WordPress GMT date string.
* @param string $date * @param string $date Date string.
* @return IXR_Date * @return IXR_Date IXR_Date object.
*/ */
protected function _convert_date_gmt( $date_gmt, $date ) { protected function _convert_date_gmt( $date_gmt, $date ) {
if ( $date !== '0000-00-00 00:00:00' && $date_gmt === '0000-00-00 00:00:00' ) { if ( $date !== '0000-00-00 00:00:00' && $date_gmt === '0000-00-00 00:00:00' ) {