From 17ba9ab97301e8c0bdb4d83121dc9aa2e8f99de7 Mon Sep 17 00:00:00 2001 From: "Drew Jaynes (DrewAPicture)" Date: Mon, 14 Jul 2014 00:41:20 +0000 Subject: [PATCH] Inline documentation cleanup for 4.0 audit. phpDoc tweaks for methods, properties, and filters added in [29051]: * `WP_Customize_Widgets::is_widget_rendered()` method * `WP_Customize_Widgets::is_sidebar_rendered()` method See #27993 and #28885. git-svn-id: https://develop.svn.wordpress.org/trunk@29159 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/class-wp-customize-widgets.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/wp-includes/class-wp-customize-widgets.php b/src/wp-includes/class-wp-customize-widgets.php index 28636f1638..0875658b44 100644 --- a/src/wp-includes/class-wp-customize-widgets.php +++ b/src/wp-includes/class-wp-customize-widgets.php @@ -1077,8 +1077,8 @@ final class WP_Customize_Widgets { * @since 4.0.0 * @access public * - * @param string $widget_id - * @return bool + * @param string $widget_id Widget ID to check. + * @return bool Whether the widget is rendered. */ public function is_widget_rendered( $widget_id ) { return in_array( $widget_id, $this->rendered_widgets ); @@ -1090,8 +1090,8 @@ final class WP_Customize_Widgets { * @since 4.0.0 * @access public * - * @param string $sidebar_id - * @return bool + * @param string $sidebar_id Sidebar ID to check. + * @return bool Whether the sidebar is rendered. */ public function is_sidebar_rendered( $sidebar_id ) { return in_array( $sidebar_id, $this->rendered_sidebars ); @@ -1108,8 +1108,8 @@ final class WP_Customize_Widgets { * @since 3.9.0 * @access public * - * @param bool $is_active Whether the sidebar is active. - * @pasram string $sidebar_id Sidebar ID. + * @param bool $is_active Whether the sidebar is active. + * @param string $sidebar_id Sidebar ID. */ public function tally_sidebars_via_is_active_sidebar_calls( $is_active, $sidebar_id ) { if ( isset( $GLOBALS['wp_registered_sidebars'][$sidebar_id] ) ) {