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
This commit is contained in:
Drew Jaynes 2016-02-27 21:16:37 +00:00
parent 592da58d26
commit 180fd6bad4

View File

@ -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 ) {}
}