From 64167f08459f6591760ba0406dad9235557b7565 Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Mon, 3 Nov 2014 05:55:22 +0000 Subject: [PATCH] Fill in the `@param` types for the args for functions missing them in `wp-admin/includes/post.php`. See #30224. Built from https://develop.svn.wordpress.org/trunk@30198 git-svn-id: http://core.svn.wordpress.org/trunk@30198 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/post.php | 32 ++++++++++++++++---------------- wp-includes/version.php | 2 +- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/wp-admin/includes/post.php b/wp-admin/includes/post.php index 730929e2c0..5d85a25139 100644 --- a/wp-admin/includes/post.php +++ b/wp-admin/includes/post.php @@ -724,8 +724,8 @@ function write_post() { * * @since 1.2.0 * - * @param unknown_type $post_ID - * @return unknown + * @param int $post_ID + * @return int|bool */ function add_meta( $post_ID ) { $post_ID = (int) $post_ID; @@ -763,8 +763,8 @@ function add_meta( $post_ID ) { * * @since 1.2.0 * - * @param unknown_type $mid - * @return unknown + * @param int $mid + * @return bool */ function delete_meta( $mid ) { return delete_metadata_by_mid( 'post' , $mid ); @@ -794,8 +794,8 @@ function get_meta_keys() { * * @since 2.1.0 * - * @param unknown_type $mid - * @return unknown + * @param int $mid + * @return object|bool */ function get_post_meta_by_id( $mid ) { return get_metadata_by_mid( 'post', $mid ); @@ -808,8 +808,8 @@ function get_post_meta_by_id( $mid ) { * * @since 1.2.0 * - * @param unknown_type $postid - * @return unknown + * @param int $postid + * @return mixed */ function has_meta( $postid ) { global $wpdb; @@ -824,10 +824,10 @@ function has_meta( $postid ) { * * @since 1.2.0 * - * @param unknown_type $meta_id - * @param unknown_type $meta_key Expect Slashed - * @param unknown_type $meta_value Expect Slashed - * @return unknown + * @param int $meta_id + * @param string $meta_key Expect Slashed + * @param string $meta_value Expect Slashed + * @return bool */ function update_meta( $meta_id, $meta_key, $meta_value ) { $meta_key = wp_unslash( $meta_key ); @@ -997,8 +997,8 @@ function wp_edit_posts_query( $q = false ) { * * @since 2.5.0 * - * @param unknown_type $type - * @return unknown + * @param string $type + * @return mixed */ function get_available_post_mime_types($type = 'attachment') { global $wpdb; @@ -1071,8 +1071,8 @@ function wp_edit_attachments_query( $q = false ) { * * @since 2.5.0 * - * @param unknown_type $id - * @param unknown_type $page + * @param string $id + * @param string $page * @return unknown */ function postbox_classes( $id, $page ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 68649596ce..1471ea9ab8 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.1-alpha-30197'; +$wp_version = '4.1-alpha-30198'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.