Make WordPress Core

Changeset 36069


Ignore:
Timestamp:
12/23/2015 06:30:09 AM (8 years ago)
Author:
johnbillion
Message:

Docs: Miscellaneous docblock corrections.

See #32246

Location:
trunk/src
Files:
6 edited

Legend:

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

    r35885 r36069  
    4949 * @since 3.2.0
    5050 *
    51  * @param string &$display_name The contributor's display name, passed by reference.
     51 * @param string $display_name The contributor's display name, passed by reference.
    5252 * @param string $username      The contributor's username.
    5353 * @param string $profiles      URL to the contributor's WordPress.org profile page.
     
    6363 * @since 3.2.0
    6464 *
    65  * @param string &$data External library data, passed by reference.
     65 * @param string $data External library data, passed by reference.
    6666 */
    6767function _wp_credits_build_object_link( &$data ) {
  • trunk/src/wp-includes/cache.php

    r35325 r36069  
    113113 * @param bool        $force  Optional. Whether to force an update of the local cache from the persistent
    114114 *                            cache. Default false.
    115  * @param bool        &$found Optional. Whether the key was found in the cache. Disambiguates a return of false,
     115 * @param bool        $found Optional. Whether the key was found in the cache. Disambiguates a return of false,
    116116 *                            a storable value. Passed by reference. Default null.
    117117 * @return bool|mixed False on failure to retrieve contents or the cache
     
    535535     * @param string     $force  Optional. Unused. Whether to force a refetch rather than relying on the local
    536536     *                           cache. Default false.
    537      * @param bool       &$found Optional. Whether the key was found in the cache. Disambiguates a return of
     537     * @param bool       $found Optional. Whether the key was found in the cache. Disambiguates a return of
    538538     *                           false, a storable value. Passed by reference. Default null.
    539539     * @return false|mixed False on failure to retrieve contents or the cache contents on success.
  • trunk/src/wp-includes/class-walker-page.php

    r35929 r36069  
    7878     * @param object $page         Page data object.
    7979     * @param int    $depth        Depth of page. Used for padding.
     80     * @param array  $args         Optional arguments.
    8081     * @param int    $current_page Page ID.
    81      * @param array  $args
    8282     */
    8383    public function start_el( &$output, $page, $depth = 0, $args = array(), $current_page = 0 ) {
  • trunk/src/wp-includes/class-wp-http-curl.php

    r35939 r36069  
    327327     *
    328328     * @param resource $handle  cURL handle.
    329      * @param string   $headers cURL request headers.
     329     * @param string   $data    cURL request body.
    330330     * @return int Total bytes of data written.
    331331     */
  • trunk/src/wp-includes/ms-functions.php

    r35725 r36069  
    21552155 * @since 2.8.5
    21562156 *
    2157  * @param string URL
     2157 * @param string $url URL
    21582158 * @return string URL with https as the scheme
    21592159 */
  • trunk/src/wp-includes/post.php

    r35903 r36069  
    42694269 *
    42704270 * @param int   $page_id   Page ID.
    4271  * @param array &$children Parent-children relations, passed by reference.
    4272  * @param array &$result   Result, passed by reference.
     4271 * @param array $children Parent-children relations, passed by reference.
     4272 * @param array $result    Result, passed by reference.
    42734273 */
    42744274function _page_traverse_name( $page_id, &$children, &$result ){
Note: See TracChangeset for help on using the changeset viewer.