Changeset 52236 for trunk/src/wp-includes/cron.php
- Timestamp:
- 11/23/2021 09:35:57 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/cron.php
r51955 r52236 1114 1114 * @since 5.1.0 1115 1115 * 1116 * @return array Cron jobs ready to be run.1116 * @return array[] Array of cron job arrays ready to be run. 1117 1117 */ 1118 1118 function wp_get_ready_cron_jobs() { … … 1125 1125 * @since 5.1.0 1126 1126 * 1127 * @param null|array $pre Array of ready cron tasks to return instead. Default null1128 * to continue using results from _get_cron_array().1127 * @param null|array[] $pre Array of ready cron tasks to return instead. Default null 1128 * to continue using results from _get_cron_array(). 1129 1129 */ 1130 1130 $pre = apply_filters( 'pre_get_ready_cron_jobs', null ); … … 1165 1165 * @access private 1166 1166 * 1167 * @return array |false Cron info arrayon success, false on failure.1167 * @return array[]|false Array of cron info arrays on success, false on failure. 1168 1168 */ 1169 1169 function _get_cron_array() { … … 1191 1191 * @access private 1192 1192 * 1193 * @param array $cron Cron info arrayfrom _get_cron_array().1194 * @param bool $wp_error Optional. Whether to return a WP_Error on failure. Default false.1193 * @param array[] $cron Array of cron info arrays from _get_cron_array(). 1194 * @param bool $wp_error Optional. Whether to return a WP_Error on failure. Default false. 1195 1195 * @return bool|WP_Error True if cron array updated. False or WP_Error on failure. 1196 1196 */
Note: See TracChangeset
for help on using the changeset viewer.