Make WordPress Core

Changeset 29161


Ignore:
Timestamp:
07/14/2014 12:45:54 AM (11 years ago)
Author:
DrewAPicture
Message:

Fill out inline documentation for the __call() magic method added to the wp_xmlrpc_server class in [28515].

See #22234 and #28885.

File:
1 edited

Legend:

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

    r29063 r29161  
    146146     *
    147147     * @since 4.0.0
    148      * @param string $name
    149      * @param array $arguments
    150      * @return mixed
     148     * @access public
     149     *
     150     * @param callable $name      Method to call.
     151     * @param array    $arguments Arguments to pass when calling.
     152     * @return mixed|bool Return value of the callback, false otherwise.
    151153     */
    152154    public function __call( $name, $arguments ) {
Note: See TracChangeset for help on using the changeset viewer.