Index: src/wp-includes/cron.php
===================================================================
--- src/wp-includes/cron.php	(revision 25686)
+++ src/wp-includes/cron.php	(working copy)
@@ -27,7 +27,19 @@
 
 	$crons = _get_cron_array();
 	$event = (object) array( 'hook' => $hook, 'timestamp' => $timestamp, 'schedule' => false, 'args' => $args );
-	$event = apply_filters('schedule_event', $event);
+	/**
+	 * Schedules a hook which will be executed by the WordPress actions core on a specific interval, specified by you.
+	 *
+	 * @since 3.1.0
+	 *
+	 * @param array $event {
+	 *   @type int    $timestamp  The first time that you want the event to occur.
+	 *   @type string $recurrence How often the event should reoccur.
+	 *   @type string $hook       The name of an action hook to execute.
+	 *   @type array  $args       Arguments to pass to the hook function(s).
+	 * }
+	 */
+        $event = apply_filters( 'schedule_event', $event );
 
 	// A plugin disallowed this event
 	if ( ! $event )
@@ -68,7 +80,8 @@
 		return false;
 
 	$event = (object) array( 'hook' => $hook, 'timestamp' => $timestamp, 'schedule' => $recurrence, 'args' => $args, 'interval' => $schedules[$recurrence]['interval'] );
-	$event = apply_filters('schedule_event', $event);
+	// duplicate_hook
+        $event = apply_filters( 'schedule_event', $event );
 
 	// A plugin disallowed this event
 	if ( ! $event )
@@ -244,10 +257,34 @@
 	$doing_wp_cron = sprintf( '%.22F', $gmt_time );
 	set_transient( 'doing_cron', $doing_wp_cron );
 
+        $check_bool = TRUE;
+	/**
+	 * SSL verify in Local WordPress Site.
+	 *
+	 * @since 2.8.0
+	 *
+	 * @type bool $check_bool Check to SecureSocketsLayer.
+	 */
+        $args_apply_filters = apply_filters( 'https_local_ssl_verify', $check_bool );
+	/**
+	 * Allows filtering of the URL, key and arguments passed to wp_remote_post() in spawn_cron().
+	 *
+	 * @since 3.5.0
+	 *
+	 * @type array{
+	 *    @type string url SiteURL/wp-crom.php?doing_wp_cron="22 digit gmt microtime".
+	 *    @type int    key 22 digit gmt microtime.
+	 *    @type array  args{
+	 *        @type int  timeout             Time to Timeout.
+	 *        @type bool blocking            Whether to blocking.
+	 *        @type bool $args_apply_filters Check to SecureSocketsLayer.
+	 *    }
+	 * }
+	 */
 	$cron_request = apply_filters( 'cron_request', array(
 		'url' => site_url( 'wp-cron.php?doing_wp_cron=' . $doing_wp_cron ),
 		'key' => $doing_wp_cron,
-		'args' => array( 'timeout' => 0.01, 'blocking' => false, 'sslverify' => apply_filters( 'https_local_ssl_verify', true ) )
+		'args' => array( 'timeout' => 0.01, 'blocking' => false, 'sslverify' => $args_apply_filters )
 	) );
 
 	wp_remote_post( $cron_request['url'], $cron_request['args'] );
@@ -321,8 +358,29 @@
 		'hourly'     => array( 'interval' => HOUR_IN_SECONDS,      'display' => __( 'Once Hourly' ) ),
 		'twicedaily' => array( 'interval' => 12 * HOUR_IN_SECONDS, 'display' => __( 'Twice Daily' ) ),
 		'daily'      => array( 'interval' => DAY_IN_SECONDS,       'display' => __( 'Once Daily' ) ),
-	);
-	return array_merge( apply_filters( 'cron_schedules', array() ), $schedules );
+        );
+	/**
+	 * A plugin to generate cron schedules in the wp_get_schedules function.
+	 *
+	 * @since 2.1.0
+	 *
+	 * @type array $schedules{
+	 *    @type array 'hourly'{
+	 *        @type int    'interval' The 'interval' is a number in seconds of when the cron job should run.
+	 *        @type string 'display'  The 'display' is the label name for this schedule.
+	 *    }
+	 *    @type array 'twicedaily'{
+	 *        @type int    'interval' The 'interval' is a number in seconds of when the cron job should run.
+	 *        @type string 'display'  The 'display' is the label name for this schedule.
+	 *    }
+	 *    @type array 'daily'{
+	 *        @type int    'interval' The 'interval' is a number in seconds of when the cron job should run.
+	 *        @type string 'display'  The 'display' is the label name for this schedule.
+	 *    }
+	 * }
+	 */
+        $array_merge = array_merge( apply_filters( 'cron_schedules', array() ), $schedules );
+	return $array_merge;
 }
 
 /**
