From 8e3c811b644b9ec1f2e46165d823ad1869b678bc Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Sun, 24 May 2015 21:10:00 +0000 Subject: [PATCH] Alter some `@return` doc blocks for `cron.php`. See #32444. git-svn-id: https://develop.svn.wordpress.org/trunk@32588 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/cron.php | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/src/wp-includes/cron.php b/src/wp-includes/cron.php index d9cfcb8dc0..8b88c1220b 100644 --- a/src/wp-includes/cron.php +++ b/src/wp-includes/cron.php @@ -18,6 +18,7 @@ * @param int $timestamp Timestamp for when to run the event. * @param string $hook Action hook to execute when cron is run. * @param array $args Optional. Arguments to pass to the hook's callback function. + * @return void|false */ function wp_schedule_single_event( $timestamp, $hook, $args = array()) { // don't schedule a duplicate if there's already an identical event due within 10 minutes of it @@ -66,7 +67,7 @@ function wp_schedule_single_event( $timestamp, $hook, $args = array()) { * @param string $recurrence How often the event should recur. * @param string $hook Action hook to execute when cron is run. * @param array $args Optional. Arguments to pass to the hook's callback function. - * @return false|null False on failure, null when complete with scheduling event. + * @return false|void False when does not schedule event. */ function wp_schedule_event( $timestamp, $recurrence, $hook, $args = array()) { $crons = _get_cron_array(); @@ -99,7 +100,7 @@ function wp_schedule_event( $timestamp, $recurrence, $hook, $args = array()) { * @param string $recurrence How often the event should recur. * @param string $hook Action hook to execute when cron is run. * @param array $args Optional. Arguments to pass to the hook's callback function. - * @return false|null False on failure. Null when event is rescheduled. + * @return false|void False when does not schedule event. */ function wp_reschedule_event( $timestamp, $recurrence, $hook, $args = array() ) { $crons = _get_cron_array(); @@ -195,7 +196,7 @@ function wp_clear_scheduled_hook( $hook, $args = array() ) { * * @param string $hook Action hook to execute when cron is run. * @param array $args Optional. Arguments to pass to the hook's callback function. - * @return bool|int The UNIX timestamp of the next time the scheduled event will occur. + * @return false|int The UNIX timestamp of the next time the scheduled event will occur. */ function wp_next_scheduled( $hook, $args = array() ) { $crons = _get_cron_array(); @@ -213,11 +214,8 @@ function wp_next_scheduled( $hook, $args = array() ) { * Send request to run cron through HTTP request that doesn't halt page loading. * * @since 2.1.0 - * - * @return null Cron could not be spawned, because it is not needed to run. */ function spawn_cron( $gmt_time = 0 ) { - if ( ! $gmt_time ) $gmt_time = microtime( true ); @@ -310,11 +308,8 @@ function spawn_cron( $gmt_time = 0 ) { * Run scheduled callbacks or spawn cron for all scheduled events. * * @since 2.1.0 - * - * @return null When doesn't need to run Cron. */ function wp_cron() { - // Prevent infinite loops caused by lack of wp-cron.php if ( strpos($_SERVER['REQUEST_URI'], '/wp-cron.php') !== false || ( defined('DISABLE_WP_CRON') && DISABLE_WP_CRON ) ) return; @@ -392,7 +387,7 @@ function wp_get_schedules() { * * @param string $hook Action hook to execute when cron is run. * @param array $args Optional. Arguments to pass to the hook's callback function. - * @return string|bool False, if no schedule. Schedule on success. + * @return string|false False, if no schedule. Schedule on success. */ function wp_get_schedule($hook, $args = array()) { $crons = _get_cron_array(); @@ -416,7 +411,7 @@ function wp_get_schedule($hook, $args = array()) { * @since 2.1.0 * @access private * - * @return array CRON info array. + * @return false|array CRON info array. */ function _get_cron_array() { $cron = get_option('cron');