From 2664528361c688a757e88c83bb4e5733a2d63d39 Mon Sep 17 00:00:00 2001
From: Chris Wilcoxson <chris@slushman.com>
Date: Sun, 3 Dec 2017 11:44:47 -0600
Subject: [PATCH] Adds PHPDocs documentation to the wp_refresh_nonces filter.

---
 wp-admin/includes/ajax-actions.php | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/wp-admin/includes/ajax-actions.php b/wp-admin/includes/ajax-actions.php
index e05ec0a273..ca112fe2e0 100644
--- a/wp-admin/includes/ajax-actions.php
+++ b/wp-admin/includes/ajax-actions.php
@@ -3088,6 +3088,16 @@ function wp_ajax_heartbeat() {
 	}
 
 	if ( 1 !== $nonce_state ) {
+
+		/**
+		 * Filters the nonces to send to the editor.
+		 *
+		 * @since 4.3.0
+		 *
+		 * @param array|object $response The no-priv Heartbeat response object or array.
+		 * @param array $data An array of data passed via $_POST.
+		 * @param string $screen_id The screen id.
+		 */
 		$response = apply_filters( 'wp_refresh_nonces', $response, $data, $screen_id );
 
 		if ( false === $nonce_state ) {
-- 
2.13.6 (Apple Git-96)

