Make WordPress Core

Changeset 35964


Ignore:
Timestamp:
12/16/2015 05:37:33 PM (9 years ago)
Author:
DrewAPicture
Message:

Docs: Add a missing summary, @since version, and parameter descriptions to the DocBlock for wp_xmlrpc_server::pingback_error().

Introduced in [23329]. Also corrects return descriptions for two deprecated methods.

See #32246.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-xmlrpc-server.php

    r35963 r35964  
    45334533     *
    45344534     * @param array $args Unused.
    4535      * @return IXR_Error Error message.
     4535     * @return IXR_Error Error object.
    45364536     */
    45374537    public function blogger_getTemplate($args) {
     
    45464546     *
    45474547     * @param array $args Unused.
    4548      * @return IXR_Error Error message.
     4548     * @return IXR_Error Error object.
    45494549     */
    45504550    public function blogger_setTemplate($args) {
     
    64186418
    64196419    /**
    6420      * @param integer $code
    6421      * @param string $message
    6422      * @return IXR_Error
     6420     * Sends a pingback error based on the given error code and message.
     6421     *
     6422     * @since 3.6.0
     6423     *
     6424     * @param int    $code    Error code.
     6425     * @param string $message Error message.
     6426     * @return IXR_Error Error object.
    64236427     */
    64246428    protected function pingback_error( $code, $message ) {
Note: See TracChangeset for help on using the changeset viewer.