From 180fd6bad4b572fc628cd8a7e3d60fd9b49875ee Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Sat, 27 Feb 2016 21:16:37 +0000 Subject: [PATCH] Docs: Add a missing summary, `@access` tag, and parameter documentation to the DocBlock for `WP_Customize_Filter_Setting::update()`. See #32246. git-svn-id: https://develop.svn.wordpress.org/trunk@36745 602fd350-edb4-49c9-b593-d223f7449a82 --- .../customize/class-wp-customize-filter-setting.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/wp-includes/customize/class-wp-customize-filter-setting.php b/src/wp-includes/customize/class-wp-customize-filter-setting.php index 605099f2a2..f6551b6019 100644 --- a/src/wp-includes/customize/class-wp-customize-filter-setting.php +++ b/src/wp-includes/customize/class-wp-customize-filter-setting.php @@ -19,7 +19,12 @@ class WP_Customize_Filter_Setting extends WP_Customize_Setting { /** + * Saves the value of the setting, using the related API. + * * @since 3.4.0 + * @access public + * + * @param mixed $value The value to update. */ public function update( $value ) {} }