Make WordPress Core

Changeset 54115


Ignore:
Timestamp:
09/09/2022 08:56:38 AM (2 years ago)
Author:
audrasjb
Message:

Docs: Various docblock fixes in wp-includes/update.php, as per documentation standards.

This addresses some files modified in changeset [54113].

See #55646.

File:
1 edited

Legend:

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

    r54113 r54115  
    11<?php
    22/**
    3  * A simple set of functions to check our version 1.0 update service.
     3 * A simple set of functions to check our Version Update service.
    44 *
    55 * @package WordPress
     
    88
    99/**
    10  * Check WordPress version against the newest version.
     10 * Checks WordPress version against the newest version.
    1111 *
    1212 * The WordPress version, PHP version, and locale is sent.
     
    2222 *
    2323 * @param array $extra_stats Extra statistics to report to the WordPress.org API.
    24  * @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.
     24 * @param bool  $force_check Whether to bypass the transient cache and force a fresh update check.
     25 *                           Defaults to false, true if $extra_stats is set.
    2526 */
    2627function wp_version_check( $extra_stats = array(), $force_check = false ) {
     
    881882
    882883/**
    883  * Collect counts and UI strings for available updates
     884 * Collects counts and UI strings for available updates.
    884885 *
    885886 * @since 3.3.0
     
    9991000}
    10001001/**
    1001  * Check the last time plugins were run before checking plugin versions.
     1002 * Checks the last time plugins were run before checking plugin versions.
    10021003 *
    10031004 * This might have been backported to WordPress 2.6.1 for performance reasons.
     
    10211022
    10221023/**
    1023  * Check themes versions only after a duration of time.
     1024 * Checks themes versions only after a duration of time.
    10241025 *
    10251026 * This is for performance reasons to make sure that on the theme version
     
    10421043
    10431044/**
    1044  * Schedule core, theme, and plugin update checks.
     1045 * Schedules core, theme, and plugin update checks.
    10451046 *
    10461047 * @since 3.1.0
     
    10611062
    10621063/**
    1063  * Clear existing update caches for plugins, themes, and core.
     1064 * Clears existing update caches for plugins, themes, and core.
    10641065 *
    10651066 * @since 4.1.0
Note: See TracChangeset for help on using the changeset viewer.