Make WordPress Core


Ignore:
Timestamp:
11/30/2014 10:43:27 PM (10 years ago)
Author:
wonderboymusic
Message:

Improve the @param docs for src/includes/theme.php and src/includes/update.php.

See #30224.

File:
1 edited

Legend:

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

    r30554 r30672  
    1919 * @param array $extra_stats Extra statistics to report to the WordPress.org API.
    2020 * @param bool $force_check Whether to bypass the transient cache and force a fresh update check. Defaults to false, true if $extra_stats is set.
    21  * @return mixed Returns null if update is unsupported. Returns false if check is too soon.
     21 * @return null|false Returns null if update is unsupported. Returns false if check is too soon.
    2222 */
    2323function wp_version_check( $extra_stats = array(), $force_check = false ) {
     
    181181 *
    182182 * @param array $extra_stats Extra statistics to report to the WordPress.org API.
    183  * @return mixed Returns null if update is unsupported. Returns false if check is too soon.
     183 * @return false|null Returns null if update is unsupported. Returns false if check is too soon.
    184184 */
    185185function wp_update_plugins( $extra_stats = array() ) {
     
    335335 *
    336336 * @param array $extra_stats Extra statistics to report to the WordPress.org API.
    337  * @return mixed Returns null if update is unsupported. Returns false if check is too soon.
     337 * @return false|null Returns null if update is unsupported. Returns false if check is too soon.
    338338 */
    339339function wp_update_themes( $extra_stats = array() ) {
Note: See TracChangeset for help on using the changeset viewer.