Make WordPress Core

Changeset 29162


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

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

See #22234 and #28885.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/comment.php

    r29045 r29162  
    225225     *
    226226     * @since 4.0.0
    227      * @param string $name
    228      * @param array $arguments
    229      * @return mixed
     227     * @access public
     228     *
     229     * @param callable $name      Method to call.
     230     * @param array    $arguments Arguments to pass when calling.
     231     * @return mixed|bool Return value of the callback, false otherwise.
    230232     */
    231233    public function __call( $name, $arguments ) {
Note: See TracChangeset for help on using the changeset viewer.