From aa35e473f763386f3b1c0fc99c6f3ea827de5a65 Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Fri, 25 Sep 2015 23:58:25 +0000 Subject: [PATCH] `callback` is not a valid type in PHP, PSR-5, or phpDocumentor. `callable` should be used instead. Fixes #34032 Built from https://develop.svn.wordpress.org/trunk@34566 git-svn-id: http://core.svn.wordpress.org/trunk@34530 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/custom-background.php | 8 ++--- wp-admin/custom-header.php | 8 ++--- wp-admin/includes/class-wp-upgrader.php | 2 +- wp-admin/includes/dashboard.php | 6 ++-- wp-admin/includes/file.php | 2 +- wp-admin/includes/import.php | 2 +- wp-admin/includes/meta-boxes.php | 6 ++-- wp-admin/includes/plugin.php | 30 +++++++++---------- wp-admin/includes/template-functions.php | 2 +- wp-includes/SimplePie/Parse/Date.php | 2 +- wp-includes/deprecated.php | 16 +++++----- wp-includes/functions.php | 12 ++++---- wp-includes/media.php | 6 ++-- wp-includes/nav-menu-template.php | 2 +- wp-includes/plugin.php | 20 ++++++------- wp-includes/post-functions.php | 2 +- wp-includes/rewrite-functions.php | 2 +- wp-includes/version.php | 2 +- wp-includes/widget-functions.php | 6 ++-- .../widgets/class-wp-nav-menu-widget.php | 2 +- 20 files changed, 69 insertions(+), 69 deletions(-) diff --git a/wp-admin/custom-background.php b/wp-admin/custom-background.php index ed4366ef96..dba32c661e 100644 --- a/wp-admin/custom-background.php +++ b/wp-admin/custom-background.php @@ -18,7 +18,7 @@ class Custom_Background { /** * Callback for administration header. * - * @var callback + * @var callable * @since 3.0.0 */ public $admin_header_callback; @@ -26,7 +26,7 @@ class Custom_Background { /** * Callback for header div. * - * @var callback + * @var callable * @since 3.0.0 */ public $admin_image_div_callback; @@ -44,8 +44,8 @@ class Custom_Background { * Constructor - Register administration header callback. * * @since 3.0.0 - * @param callback $admin_header_callback - * @param callback $admin_image_div_callback Optional custom image div output callback. + * @param callable $admin_header_callback + * @param callable $admin_image_div_callback Optional custom image div output callback. */ public function __construct($admin_header_callback = '', $admin_image_div_callback = '') { $this->admin_header_callback = $admin_header_callback; diff --git a/wp-admin/custom-header.php b/wp-admin/custom-header.php index 238fd61e09..fdb9cbaab1 100644 --- a/wp-admin/custom-header.php +++ b/wp-admin/custom-header.php @@ -18,7 +18,7 @@ class Custom_Image_Header { /** * Callback for administration header. * - * @var callback + * @var callable * @since 2.1.0 */ public $admin_header_callback; @@ -26,7 +26,7 @@ class Custom_Image_Header { /** * Callback for header div. * - * @var callback + * @var callable * @since 3.0.0 */ public $admin_image_div_callback; @@ -53,8 +53,8 @@ class Custom_Image_Header { * Constructor - Register administration header callback. * * @since 2.1.0 - * @param callback $admin_header_callback - * @param callback $admin_image_div_callback Optional custom image div output callback. + * @param callable $admin_header_callback + * @param callable $admin_image_div_callback Optional custom image div output callback. */ public function __construct($admin_header_callback, $admin_image_div_callback = '') { $this->admin_header_callback = $admin_header_callback; diff --git a/wp-admin/includes/class-wp-upgrader.php b/wp-admin/includes/class-wp-upgrader.php index 2319b34870..cf0655b958 100644 --- a/wp-admin/includes/class-wp-upgrader.php +++ b/wp-admin/includes/class-wp-upgrader.php @@ -2147,7 +2147,7 @@ class Core_Upgrader extends WP_Upgrader { * @access public * * @global WP_Filesystem_Base $wp_filesystem Subclass - * @global callback $_wp_filesystem_direct_method + * @global callable $_wp_filesystem_direct_method * * @param object $current Response object for whether WordPress is current. * @param array $args { diff --git a/wp-admin/includes/dashboard.php b/wp-admin/includes/dashboard.php index b3b852de26..b24b9a851e 100644 --- a/wp-admin/includes/dashboard.php +++ b/wp-admin/includes/dashboard.php @@ -135,8 +135,8 @@ function wp_dashboard_setup() { * * @param string $widget_id * @param string $widget_name - * @param callback $callback - * @param callback $control_callback + * @param callable $callback + * @param callable $control_callback * @param array $callback_args */ function wp_add_dashboard_widget( $widget_id, $widget_name, $callback, $control_callback = null, $callback_args = null ) { @@ -886,7 +886,7 @@ function wp_dashboard_rss_output( $widget_id ) { * @since 2.5.0 * * @param string $widget_id - * @param callback $callback + * @param callable $callback * @param array $check_urls RSS feeds * @return bool False on failure. True on success. */ diff --git a/wp-admin/includes/file.php b/wp-admin/includes/file.php index 62b644be3a..5e46478827 100644 --- a/wp-admin/includes/file.php +++ b/wp-admin/includes/file.php @@ -909,7 +909,7 @@ function WP_Filesystem( $args = false, $context = false, $allow_relaxed_file_own * * @since 2.5.0 * - * @global callback $_wp_filesystem_direct_method + * @global callable $_wp_filesystem_direct_method * * @param array $args Optional. Connection details. Default empty array. * @param string $context Optional. Full path to the directory that is tested diff --git a/wp-admin/includes/import.php b/wp-admin/includes/import.php index 8b6737437a..fa980e6f16 100644 --- a/wp-admin/includes/import.php +++ b/wp-admin/includes/import.php @@ -48,7 +48,7 @@ function _usort_by_first_member( $a, $b ) { * @param string $id Importer tag. Used to uniquely identify importer. * @param string $name Importer name and title. * @param string $description Importer description. - * @param callback $callback Callback to run. + * @param callable $callback Callback to run. * @return WP_Error Returns WP_Error when $callback is WP_Error. */ function register_importer( $id, $name, $description, $callback ) { diff --git a/wp-admin/includes/meta-boxes.php b/wp-admin/includes/meta-boxes.php index 5adfdba39d..8429b57935 100644 --- a/wp-admin/includes/meta-boxes.php +++ b/wp-admin/includes/meta-boxes.php @@ -345,7 +345,7 @@ function attachment_submit_meta_box( $post ) { * * @type string $id Meta box ID. * @type string $title Meta box title. - * @type callback $callback Meta box display callback. + * @type callable $callback Meta box display callback. * @type array $args Extra meta box arguments. * } */ @@ -386,7 +386,7 @@ function post_format_meta_box( $post, $box ) { * * @type string $id Meta box ID. * @type string $title Meta box title. - * @type callback $callback Meta box display callback. + * @type callable $callback Meta box display callback. * @type array $args { * Extra meta box arguments. * @@ -442,7 +442,7 @@ function post_tags_meta_box( $post, $box ) { * * @type string $id Meta box ID. * @type string $title Meta box title. - * @type callback $callback Meta box display callback. + * @type callable $callback Meta box display callback. * @type array $args { * Extra meta box arguments. * diff --git a/wp-admin/includes/plugin.php b/wp-admin/includes/plugin.php index ca03f93bd5..71361425e7 100644 --- a/wp-admin/includes/plugin.php +++ b/wp-admin/includes/plugin.php @@ -1014,7 +1014,7 @@ function uninstall_plugin($plugin) { * @param string $menu_title The text to be used for the menu * @param string $capability The capability required for this menu to be displayed to the user. * @param string $menu_slug The slug name to refer to this menu by (should be unique for this menu) - * @param callback $function The function to be called to output the content for this page. + * @param callable $function The function to be called to output the content for this page. * @param string $icon_url The url to the icon to be used for this menu. * * Pass a base64-encoded SVG using a data URI, which will be colored to match the color scheme. * This should begin with 'data:image/svg+xml;base64,'. @@ -1074,7 +1074,7 @@ function add_menu_page( $page_title, $menu_title, $capability, $menu_slug, $func * @param string $menu_title The text to be used for the menu * @param string $capability The capability required for this menu to be displayed to the user. * @param string $menu_slug The slug name to refer to this menu by (should be unique for this menu) - * @param callback $function The function to be called to output the content for this page. + * @param callable $function The function to be called to output the content for this page. * @param string $icon_url The url to the icon to be used for this menu * * @return string The resulting page's hook_suffix @@ -1102,7 +1102,7 @@ function add_object_page( $page_title, $menu_title, $capability, $menu_slug, $fu * @param string $menu_title The text to be used for the menu * @param string $capability The capability required for this menu to be displayed to the user. * @param string $menu_slug The slug name to refer to this menu by (should be unique for this menu) - * @param callback $function The function to be called to output the content for this page. + * @param callable $function The function to be called to output the content for this page. * @param string $icon_url The url to the icon to be used for this menu * * @return string The resulting page's hook_suffix @@ -1136,7 +1136,7 @@ function add_utility_page( $page_title, $menu_title, $capability, $menu_slug, $f * @param string $menu_title The text to be used for the menu * @param string $capability The capability required for this menu to be displayed to the user. * @param string $menu_slug The slug name to refer to this menu by (should be unique for this menu) - * @param callback $function The function to be called to output the content for this page. + * @param callable $function The function to be called to output the content for this page. * * @return false|string The resulting page's hook_suffix, or false if the user does not have the capability required. */ @@ -1202,7 +1202,7 @@ function add_submenu_page( $parent_slug, $page_title, $menu_title, $capability, * @param string $menu_title The text to be used for the menu * @param string $capability The capability required for this menu to be displayed to the user. * @param string $menu_slug The slug name to refer to this menu by (should be unique for this menu) - * @param callback $function The function to be called to output the content for this page. + * @param callable $function The function to be called to output the content for this page. * * @return false|string The resulting page's hook_suffix, or false if the user does not have the capability required. */ @@ -1223,7 +1223,7 @@ function add_management_page( $page_title, $menu_title, $capability, $menu_slug, * @param string $menu_title The text to be used for the menu * @param string $capability The capability required for this menu to be displayed to the user. * @param string $menu_slug The slug name to refer to this menu by (should be unique for this menu) - * @param callback $function The function to be called to output the content for this page. + * @param callable $function The function to be called to output the content for this page. * * @return false|string The resulting page's hook_suffix, or false if the user does not have the capability required. */ @@ -1244,7 +1244,7 @@ function add_options_page( $page_title, $menu_title, $capability, $menu_slug, $f * @param string $menu_title The text to be used for the menu * @param string $capability The capability required for this menu to be displayed to the user. * @param string $menu_slug The slug name to refer to this menu by (should be unique for this menu) - * @param callback $function The function to be called to output the content for this page. + * @param callable $function The function to be called to output the content for this page. * * @return false|string The resulting page's hook_suffix, or false if the user does not have the capability required. */ @@ -1265,7 +1265,7 @@ function add_theme_page( $page_title, $menu_title, $capability, $menu_slug, $fun * @param string $menu_title The text to be used for the menu * @param string $capability The capability required for this menu to be displayed to the user. * @param string $menu_slug The slug name to refer to this menu by (should be unique for this menu) - * @param callback $function The function to be called to output the content for this page. + * @param callable $function The function to be called to output the content for this page. * * @return false|string The resulting page's hook_suffix, or false if the user does not have the capability required. */ @@ -1286,7 +1286,7 @@ function add_plugins_page( $page_title, $menu_title, $capability, $menu_slug, $f * @param string $menu_title The text to be used for the menu * @param string $capability The capability required for this menu to be displayed to the user. * @param string $menu_slug The slug name to refer to this menu by (should be unique for this menu) - * @param callback $function The function to be called to output the content for this page. + * @param callable $function The function to be called to output the content for this page. * * @return false|string The resulting page's hook_suffix, or false if the user does not have the capability required. */ @@ -1310,7 +1310,7 @@ function add_users_page( $page_title, $menu_title, $capability, $menu_slug, $fun * @param string $menu_title The text to be used for the menu * @param string $capability The capability required for this menu to be displayed to the user. * @param string $menu_slug The slug name to refer to this menu by (should be unique for this menu) - * @param callback $function The function to be called to output the content for this page. + * @param callable $function The function to be called to output the content for this page. * * @return false|string The resulting page's hook_suffix, or false if the user does not have the capability required. */ @@ -1331,7 +1331,7 @@ function add_dashboard_page( $page_title, $menu_title, $capability, $menu_slug, * @param string $menu_title The text to be used for the menu * @param string $capability The capability required for this menu to be displayed to the user. * @param string $menu_slug The slug name to refer to this menu by (should be unique for this menu) - * @param callback $function The function to be called to output the content for this page. + * @param callable $function The function to be called to output the content for this page. * * @return false|string The resulting page's hook_suffix, or false if the user does not have the capability required. */ @@ -1352,7 +1352,7 @@ function add_posts_page( $page_title, $menu_title, $capability, $menu_slug, $fun * @param string $menu_title The text to be used for the menu * @param string $capability The capability required for this menu to be displayed to the user. * @param string $menu_slug The slug name to refer to this menu by (should be unique for this menu) - * @param callback $function The function to be called to output the content for this page. + * @param callable $function The function to be called to output the content for this page. * * @return false|string The resulting page's hook_suffix, or false if the user does not have the capability required. */ @@ -1373,7 +1373,7 @@ function add_media_page( $page_title, $menu_title, $capability, $menu_slug, $fun * @param string $menu_title The text to be used for the menu * @param string $capability The capability required for this menu to be displayed to the user. * @param string $menu_slug The slug name to refer to this menu by (should be unique for this menu) - * @param callback $function The function to be called to output the content for this page. + * @param callable $function The function to be called to output the content for this page. * * @return false|string The resulting page's hook_suffix, or false if the user does not have the capability required. */ @@ -1394,7 +1394,7 @@ function add_links_page( $page_title, $menu_title, $capability, $menu_slug, $fun * @param string $menu_title The text to be used for the menu * @param string $capability The capability required for this menu to be displayed to the user. * @param string $menu_slug The slug name to refer to this menu by (should be unique for this menu) - * @param callback $function The function to be called to output the content for this page. + * @param callable $function The function to be called to output the content for this page. * * @return false|string The resulting page's hook_suffix, or false if the user does not have the capability required. */ @@ -1415,7 +1415,7 @@ function add_pages_page( $page_title, $menu_title, $capability, $menu_slug, $fun * @param string $menu_title The text to be used for the menu * @param string $capability The capability required for this menu to be displayed to the user. * @param string $menu_slug The slug name to refer to this menu by (should be unique for this menu) - * @param callback $function The function to be called to output the content for this page. + * @param callable $function The function to be called to output the content for this page. * * @return false|string The resulting page's hook_suffix, or false if the user does not have the capability required. */ diff --git a/wp-admin/includes/template-functions.php b/wp-admin/includes/template-functions.php index 7860f19aeb..54d0a0a889 100644 --- a/wp-admin/includes/template-functions.php +++ b/wp-admin/includes/template-functions.php @@ -850,7 +850,7 @@ function wp_import_upload_form( $action ) { * * @param string $id String for use in the 'id' attribute of tags. * @param string $title Title of the meta box. - * @param callback $callback Function that fills the box with the desired content. + * @param callable $callback Function that fills the box with the desired content. * The function should echo its output. * @param string|WP_Screen $screen Optional. The screen on which to show the box (like a post * type, 'link', or 'comment'). Default is the current screen. diff --git a/wp-includes/SimplePie/Parse/Date.php b/wp-includes/SimplePie/Parse/Date.php index d51f500d3f..86542528ae 100644 --- a/wp-includes/SimplePie/Parse/Date.php +++ b/wp-includes/SimplePie/Parse/Date.php @@ -613,7 +613,7 @@ class SimplePie_Parse_Date * * @final * @access public - * @param callback $callback + * @param callable $callback */ public function add_callback($callback) { diff --git a/wp-includes/deprecated.php b/wp-includes/deprecated.php index 914d137658..c5f839cce8 100644 --- a/wp-includes/deprecated.php +++ b/wp-includes/deprecated.php @@ -2080,7 +2080,7 @@ function attribute_escape( $text ) { * @see wp_register_sidebar_widget() * * @param string|int $name Widget ID. - * @param callback $output_callback Run when widget is called. + * @param callable $output_callback Run when widget is called. * @param string $classname Classname widget option. * @param mixed $params ,... Widget parameters. */ @@ -2135,7 +2135,7 @@ function unregister_sidebar_widget($id) { * @see wp_register_widget_control() * * @param int|string $name Sidebar ID. - * @param callback $control_callback Widget control callback to display and process form. + * @param callable $control_callback Widget control callback to display and process form. * @param int $width Widget width. * @param int $height Widget height. */ @@ -2928,9 +2928,9 @@ function clean_pre($matches) { * @deprecated 3.4.0 Use add_theme_support() * @see add_theme_support() * - * @param callback $wp_head_callback Call on 'wp_head' action. - * @param callback $admin_head_callback Call on custom header administration screen. - * @param callback $admin_preview_callback Output a custom header image div on the custom header administration screen. Optional. + * @param callable $wp_head_callback Call on 'wp_head' action. + * @param callable $admin_head_callback Call on custom header administration screen. + * @param callable $admin_preview_callback Output a custom header image div on the custom header administration screen. Optional. */ function add_custom_image_header( $wp_head_callback, $admin_head_callback, $admin_preview_callback = '' ) { _deprecated_function( __FUNCTION__, '3.4', 'add_theme_support( \'custom-header\', $args )' ); @@ -2964,9 +2964,9 @@ function remove_custom_image_header() { * @deprecated 3.4.0 Use add_theme_support() * @see add_theme_support() * - * @param callback $wp_head_callback Call on 'wp_head' action. - * @param callback $admin_head_callback Call on custom background administration screen. - * @param callback $admin_preview_callback Output a custom background image div on the custom background administration screen. Optional. + * @param callable $wp_head_callback Call on 'wp_head' action. + * @param callable $admin_head_callback Call on custom background administration screen. + * @param callable $admin_preview_callback Output a custom background image div on the custom background administration screen. Optional. */ function add_custom_background( $wp_head_callback = '', $admin_head_callback = '', $admin_preview_callback = '' ) { _deprecated_function( __FUNCTION__, '3.4', 'add_theme_support( \'custom-background\', $args )' ); diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 6165ca9ff9..ca6e139a77 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -1873,7 +1873,7 @@ function wp_upload_dir( $time = null ) { * * @param string $dir Directory. * @param string $filename File name. - * @param callback $unique_filename_callback Callback. Default null. + * @param callable $unique_filename_callback Callback. Default null. * @return string New filename, if given wasn't unique. */ function wp_unique_filename( $dir, $filename, $unique_filename_callback = null ) { @@ -2395,7 +2395,7 @@ function wp_die( $message = '', $title = '', $args = array() ) { * * @since 3.4.0 * - * @param callback $function Callback function name. + * @param callable $function Callback function name. */ $function = apply_filters( 'wp_die_ajax_handler', '_ajax_wp_die_handler' ); } elseif ( defined( 'XMLRPC_REQUEST' ) && XMLRPC_REQUEST ) { @@ -2404,7 +2404,7 @@ function wp_die( $message = '', $title = '', $args = array() ) { * * @since 3.4.0 * - * @param callback $function Callback function name. + * @param callable $function Callback function name. */ $function = apply_filters( 'wp_die_xmlrpc_handler', '_xmlrpc_wp_die_handler' ); } else { @@ -2413,7 +2413,7 @@ function wp_die( $message = '', $title = '', $args = array() ) { * * @since 3.0.0 * - * @param callback $function Callback function name. + * @param callable $function Callback function name. */ $function = apply_filters( 'wp_die_handler', '_default_wp_die_handler' ); } @@ -4475,7 +4475,7 @@ function _wp_mysql_week( $column ) { * @since 3.1.0 * @access private * - * @param callback $callback Function that accepts ( ID, $callback_args ) and outputs parent_ID. + * @param callable $callback Function that accepts ( ID, $callback_args ) and outputs parent_ID. * @param int $start The ID to start the loop check at. * @param int $start_parent The parent_ID of $start to use instead of calling $callback( $start ). * Use null to always use $callback @@ -4500,7 +4500,7 @@ function wp_find_hierarchy_loop( $callback, $start, $start_parent, $callback_arg * @since 3.1.0 * @access private * - * @param callback $callback Function that accepts ( ID, callback_arg, ... ) and outputs parent_ID. + * @param callable $callback Function that accepts ( ID, callback_arg, ... ) and outputs parent_ID. * @param int $start The ID to start the loop check at. * @param array $override Optional. An array of ( ID => parent_ID, ... ) to use instead of $callback. * Default empty array. diff --git a/wp-includes/media.php b/wp-includes/media.php index 2a50018ddb..ef41e201f0 100644 --- a/wp-includes/media.php +++ b/wp-includes/media.php @@ -2187,7 +2187,7 @@ function wp_imagecreatetruecolor($width, $height) { * * @param string $id An internal ID/name for the handler. Needs to be unique. * @param string $regex The regex that will be used to see if this handler should be used for a URL. - * @param callback $callback The callback function that will be called if the regex is matched. + * @param callable $callback The callback function that will be called if the regex is matched. * @param int $priority Optional. Used to specify the order in which the registered handlers will * be tested. Default 10. */ @@ -2373,7 +2373,7 @@ function wp_maybe_load_embeds() { * * @since 3.6.0 * - * @param callback $handler Audio embed handler callback function. + * @param callable $handler Audio embed handler callback function. */ wp_embed_register_handler( 'audio', '#^https?://.+?\.(' . join( '|', wp_get_audio_extensions() ) . ')$#i', apply_filters( 'wp_audio_embed_handler', 'wp_embed_handler_audio' ), 9999 ); @@ -2382,7 +2382,7 @@ function wp_maybe_load_embeds() { * * @since 3.6.0 * - * @param callback $handler Video embed handler callback function. + * @param callable $handler Video embed handler callback function. */ wp_embed_register_handler( 'video', '#^https?://.+?\.(' . join( '|', wp_get_video_extensions() ) . ')$#i', apply_filters( 'wp_video_embed_handler', 'wp_embed_handler_video' ), 9999 ); } diff --git a/wp-includes/nav-menu-template.php b/wp-includes/nav-menu-template.php index 81a2781c76..12ab81d4ac 100644 --- a/wp-includes/nav-menu-template.php +++ b/wp-includes/nav-menu-template.php @@ -219,7 +219,7 @@ class Walker_Nav_Menu extends Walker { * @type string $container Whether to wrap the ul, and what to wrap it with. Default 'div'. * @type string $container_class Class that is applied to the container. Default 'menu-{menu slug}-container'. * @type string $container_id The ID that is applied to the container. Default empty. - * @type callback|bool $fallback_cb If the menu doesn't exists, a callback function will fire. + * @type callable|bool $fallback_cb If the menu doesn't exists, a callback function will fire. * Default is 'wp_page_menu'. Set to false for no fallback. * @type string $before Text before the link text. Default empty. * @type string $after Text after the link text. Default empty. diff --git a/wp-includes/plugin.php b/wp-includes/plugin.php index d4009061c1..1ec2497ef3 100644 --- a/wp-includes/plugin.php +++ b/wp-includes/plugin.php @@ -91,7 +91,7 @@ if ( ! isset( $wp_current_filter ) ) * it doesn't need to run through that process. * * @param string $tag The name of the filter to hook the $function_to_add callback to. - * @param callback $function_to_add The callback to be run when the filter is applied. + * @param callable $function_to_add The callback to be run when the filter is applied. * @param int $priority Optional. Used to specify the order in which the functions * associated with a particular action are executed. Default 10. * Lower numbers correspond with earlier execution, @@ -117,7 +117,7 @@ function add_filter( $tag, $function_to_add, $priority = 10, $accepted_args = 1 * @global array $wp_filter Stores all of the filters. * * @param string $tag The name of the filter hook. - * @param callback|bool $function_to_check Optional. The callback to check for. Default false. + * @param callable|bool $function_to_check Optional. The callback to check for. Default false. * @return false|int If $function_to_check is omitted, returns boolean for whether the hook has * anything registered. When checking a specific function, the priority of that * hook is returned, or false if the function is not attached. When using the @@ -314,7 +314,7 @@ function apply_filters_ref_array($tag, $args) { * @global array $merged_filters Merges the filter hooks using this function. * * @param string $tag The filter hook to which the function to be removed is hooked. - * @param callback $function_to_remove The name of the function which should be removed. + * @param callable $function_to_remove The name of the function which should be removed. * @param int $priority Optional. The priority of the function. Default 10. * @return bool Whether the function existed before it was removed. */ @@ -445,7 +445,7 @@ function doing_action( $action = null ) { * @since 1.2.0 * * @param string $tag The name of the action to which the $function_to_add is hooked. - * @param callback $function_to_add The name of the function you wish to be called. + * @param callable $function_to_add The name of the function you wish to be called. * @param int $priority Optional. Used to specify the order in which the functions * associated with a particular action are executed. Default 10. * Lower numbers correspond with earlier execution, @@ -613,7 +613,7 @@ function do_action_ref_array($tag, $args) { * @see has_filter() has_action() is an alias of has_filter(). * * @param string $tag The name of the action hook. - * @param callback|bool $function_to_check Optional. The callback to check for. Default false. + * @param callable|bool $function_to_check Optional. The callback to check for. Default false. * @return bool|int If $function_to_check is omitted, returns boolean for whether the hook has * anything registered. When checking a specific function, the priority of that * hook is returned, or false if the function is not attached. When using the @@ -635,7 +635,7 @@ function has_action($tag, $function_to_check = false) { * @since 1.2.0 * * @param string $tag The action hook to which the function to be removed is hooked. - * @param callback $function_to_remove The name of the function which should be removed. + * @param callable $function_to_remove The name of the function which should be removed. * @param int $priority Optional. The priority of the function. Default 10. * @return bool Whether the function is removed. */ @@ -771,7 +771,7 @@ function plugin_dir_url( $file ) { * @since 2.0.0 * * @param string $file The filename of the plugin including the path. - * @param callback $function The function hooked to the 'activate_PLUGIN' action. + * @param callable $function The function hooked to the 'activate_PLUGIN' action. */ function register_activation_hook($file, $function) { $file = plugin_basename($file); @@ -794,7 +794,7 @@ function register_activation_hook($file, $function) { * @since 2.0.0 * * @param string $file The filename of the plugin including the path. - * @param callback $function The function hooked to the 'deactivate_PLUGIN' action. + * @param callable $function The function hooked to the 'deactivate_PLUGIN' action. */ function register_deactivation_hook($file, $function) { $file = plugin_basename($file); @@ -824,7 +824,7 @@ function register_deactivation_hook($file, $function) { * @since 2.7.0 * * @param string $file Plugin file. - * @param callback $callback The callback to run when the hook is called. Must be + * @param callable $callback The callback to run when the hook is called. Must be * a static method or function. */ function register_uninstall_hook( $file, $callback ) { @@ -900,7 +900,7 @@ function _wp_call_all_hook($args) { * @staticvar int $filter_id_count * * @param string $tag Used in counting how many hooks were applied - * @param callback $function Used for creating unique id + * @param callable $function Used for creating unique id * @param int|bool $priority Used in counting how many hooks were applied. If === false * and $function is an object reference, we return the unique * id only if it already has one, false otherwise. diff --git a/wp-includes/post-functions.php b/wp-includes/post-functions.php index a9f1ffc665..47db1dfcec 100644 --- a/wp-includes/post-functions.php +++ b/wp-includes/post-functions.php @@ -940,7 +940,7 @@ function get_post_types( $args = array(), $output = 'names', $operator = 'and' ) * Default false. * @type array $supports An alias for calling {@see add_post_type_support()} directly. * Defaults to array containing 'title' & 'editor'. - * @type callback $register_meta_box_cb Provide a callback function that sets up the meta boxes for the + * @type callable $register_meta_box_cb Provide a callback function that sets up the meta boxes for the * edit form. Do remove_meta_box() and add_meta_box() calls in the * callback. Default null. * @type array $taxonomies An array of taxonomy identifiers that will be registered for the diff --git a/wp-includes/rewrite-functions.php b/wp-includes/rewrite-functions.php index 840e5d6425..ed085b7c22 100644 --- a/wp-includes/rewrite-functions.php +++ b/wp-includes/rewrite-functions.php @@ -86,7 +86,7 @@ function add_permastruct( $name, $struct, $args = array() ) { * @global WP_Rewrite $wp_rewrite * * @param string $feedname - * @param callback $function Callback to run on feed display. + * @param callable $function Callback to run on feed display. * @return string Feed action name. */ function add_feed($feedname, $function) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 7a9dae4162..cdd10a8483 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34565'; +$wp_version = '4.4-alpha-34566'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. diff --git a/wp-includes/widget-functions.php b/wp-includes/widget-functions.php index eac11f03a6..2d5982777f 100644 --- a/wp-includes/widget-functions.php +++ b/wp-includes/widget-functions.php @@ -222,7 +222,7 @@ function unregister_sidebar( $name ) { * * @param int|string $id Widget ID. * @param string $name Widget display title. - * @param callback $output_callback Run when widget is called. + * @param callable $output_callback Run when widget is called. * @param array $options { * Optional. An array of supplementary widget options for the instance. * @@ -364,7 +364,7 @@ function wp_unregister_sidebar_widget($id) { * * @param int|string $id Sidebar ID. * @param string $name Sidebar display name. - * @param callback $control_callback Run when sidebar is displayed. + * @param callable $control_callback Run when sidebar is displayed. * @param array|string $options Optional. Widget options. See description above. Default empty array. */ function wp_register_widget_control( $id, $name, $control_callback, $options = array() ) { @@ -613,7 +613,7 @@ function dynamic_sidebar( $index = 1 ) { * * @type string $name Name of the widget. * @type string $id Widget ID. - * @type array|callback $callback When the hook is fired on the front-end, $callback is an array + * @type array|callable $callback When the hook is fired on the front-end, $callback is an array * containing the widget object. Fired on the back-end, $callback * is 'wp_widget_control', see $_callback. * @type array $params An associative array of multi-widget arguments. diff --git a/wp-includes/widgets/class-wp-nav-menu-widget.php b/wp-includes/widgets/class-wp-nav-menu-widget.php index 6a6a5631cc..e03905c6ed 100644 --- a/wp-includes/widgets/class-wp-nav-menu-widget.php +++ b/wp-includes/widgets/class-wp-nav-menu-widget.php @@ -53,7 +53,7 @@ * @param array $nav_menu_args { * An array of arguments passed to wp_nav_menu() to retrieve a custom menu. * - * @type callback|bool $fallback_cb Callback to fire if the menu doesn't exist. Default empty. + * @type callable|bool $fallback_cb Callback to fire if the menu doesn't exist. Default empty. * @type mixed $menu Menu ID, slug, or name. * } * @param stdClass $nav_menu Nav menu object for the current menu.