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

See #32246.


git-svn-id: https://develop.svn.wordpress.org/trunk@32563 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Drew Jaynes 2015-05-23 19:39:30 +00:00
parent 366c5abe4d
commit e3b95fa4d6
1 changed files with 4 additions and 4 deletions

View File

@ -669,8 +669,8 @@ class wp_xmlrpc_server extends IXR_Server {
*
* @access protected
*
* @param array|object $term The unprepared term data
* @return array The prepared term data
* @param array|object $term The unprepared term data.
* @return array The prepared term data.
*/
protected function _prepare_term( $term ) {
$_term = $term;
@ -702,8 +702,8 @@ class wp_xmlrpc_server extends IXR_Server {
*
* @access protected
*
* @param string $date
* @return IXR_Date
* @param string $date Date string to convert.
* @return IXR_Date IXR_Date object.
*/
protected function _convert_date( $date ) {
if ( $date === '0000-00-00 00:00:00' ) {