Make WordPress Core

Changeset 29153


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

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

See #22234 and #28885.

File:
1 edited

Legend:

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

    r28539 r29153  
    8383
    8484    /**
    85      * Make private/protected methods readable for backwards compatibility
     85     * Make private/protected methods readable for backwards compatibility.
    8686     *
    8787     * @since 4.0.0
    88      * @param string $name
    89      * @param array $arguments
    90      * @return mixed
     88     * @access public
     89     *
     90     * @param callable $name      Method to call.
     91     * @param array    $arguments Arguments to pass when calling.
     92     * @return mixed|bool Return value of the callback, false otherwise.
    9193     */
    9294    public function __call( $name, $arguments ) {
Note: See TracChangeset for help on using the changeset viewer.