From dbfa71a6385a2d4ae36ae0c3416cc65a972ed597 Mon Sep 17 00:00:00 2001
From: Sergey Biryukov <sergeybiryukov@git.wordpress.org>
Date: Thu, 20 Jul 2017 11:53:15 +0000
Subject: [PATCH] Docs: Add `@access` entries for `$admin_header_callback` and
 `$admin_image_div_callback` properties in `Custom_Image_Header` and
 `Custom_Background`.

Props rushabh4486.
Fixes #41377.

git-svn-id: https://develop.svn.wordpress.org/trunk@41100 602fd350-edb4-49c9-b593-d223f7449a82
---
 src/wp-admin/custom-background.php | 2 ++
 src/wp-admin/custom-header.php     | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/src/wp-admin/custom-background.php b/src/wp-admin/custom-background.php
index 487697e40d..421f30d85f 100644
--- a/src/wp-admin/custom-background.php
+++ b/src/wp-admin/custom-background.php
@@ -18,6 +18,7 @@ class Custom_Background {
 	 *
 	 * @var callable
 	 * @since 3.0.0
+	 * @access public
 	 */
 	public $admin_header_callback;
 
@@ -26,6 +27,7 @@ class Custom_Background {
 	 *
 	 * @var callable
 	 * @since 3.0.0
+	 * @access public
 	 */
 	public $admin_image_div_callback;
 
diff --git a/src/wp-admin/custom-header.php b/src/wp-admin/custom-header.php
index 25e265e21c..66f32a6658 100644
--- a/src/wp-admin/custom-header.php
+++ b/src/wp-admin/custom-header.php
@@ -18,6 +18,7 @@ class Custom_Image_Header {
 	 *
 	 * @var callable
 	 * @since 2.1.0
+	 * @access public
 	 */
 	public $admin_header_callback;
 
@@ -26,6 +27,7 @@ class Custom_Image_Header {
 	 *
 	 * @var callable
 	 * @since 3.0.0
+	 * @access public
 	 */
 	public $admin_image_div_callback;