Make WordPress Core

Changeset 30202


Ignore:
Timestamp:
11/03/2014 06:16:34 AM (10 years ago)
Author:
wonderboymusic
Message:

Correct all @return unknown instances.

See #30224.

Location:
trunk/src
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/deprecated.php

    r30201 r30202  
    275275 * @param int $user_id User ID.
    276276 * @param bool $exclude_zeros Optional, default is true. Whether to exclude zeros.
    277  * @return unknown
     277 * @return mixed
    278278 */
    279279function get_editable_user_ids( $user_id, $exclude_zeros = true, $post_type = 'post' ) {
     
    608608     * @access public
    609609     *
    610      * @return unknown
     610     * @return array
    611611     */
    612612    function get_results() {
     
    941941 * @deprecated 3.4.0
    942942 *
    943  * @return unknown
     943 * @return array
    944944 */
    945945function get_broken_themes() {
     
    965965 * @deprecated 3.4.0
    966966 *
    967  * @return unknown
     967 * @return WP_Theme
    968968 */
    969969function current_theme_info() {
  • trunk/src/wp-admin/includes/media.php

    r30201 r30202  
    865865 * @since 2.5.0
    866866 *
    867  * @return unknown
     867 * @return string|null
    868868 */
    869869function media_upload_gallery() {
     
    888888 * @since 2.5.0
    889889 *
    890  * @return unknown
     890 * @return string|null
    891891 */
    892892function media_upload_library() {
  • trunk/src/wp-admin/includes/post.php

    r30198 r30202  
    637637 * @since 2.1.0
    638638 *
    639  * @return unknown
     639 * @return int|WP_Error
    640640 */
    641641function wp_write_post() {
     
    706706 * @since 2.0.0
    707707 *
    708  * @return unknown
     708 * @return int|null
    709709 */
    710710function write_post() {
     
    776776 * @since 1.2.0
    777777 *
    778  * @return unknown
     778 * @return mixed
    779779 */
    780780function get_meta_keys() {
     
    10741074 * @param string $id
    10751075 * @param string $page
    1076  * @return unknown
     1076 * @return string
    10771077 */
    10781078function postbox_classes( $id, $page ) {
  • trunk/src/wp-admin/includes/upgrade.php

    r30195 r30202  
    20402040 * @since 1.5.0
    20412041 *
    2042  * @return unknown
     2042 * @return string|bool
    20432043 */
    20442044function make_site_theme() {
  • trunk/src/wp-admin/includes/user.php

    r29966 r30202  
    196196 * @since 2.8.0
    197197 *
    198  * @return unknown
     198 * @return array
    199199 */
    200200function get_editable_roles() {
  • trunk/src/wp-includes/comment.php

    r30182 r30202  
    22052205 *
    22062206 * @param bool $defer
    2207  * @return unknown
     2207 * @return bool
    22082208 */
    22092209function wp_defer_comment_counting($defer=null) {
  • trunk/src/wp-includes/deprecated.php

    r30122 r30202  
    469469 *      specify 'rand' as the order which will return links in a random order.
    470470 * @param int $limit Limit to X entries. If not specified, all entries are shown.
    471  * @return unknown
     471 * @return array
    472472 */
    473473function get_linkobjectsbyname($cat_name = "noname" , $orderby = 'name', $limit = -1) {
     
    523523 *      order which will return links in a random order.
    524524 * @param int $limit Limit to X entries. If not specified, all entries are shown.
    525  * @return unknown
     525 * @return array
    526526 */
    527527function get_linkobjects($category = 0, $orderby = 'name', $limit = 0) {
     
    632632 * @param string $exclude
    633633 * @param bool $hierarchical
    634  * @return unknown
     634 * @return string
    635635 */
    636636function list_cats($optionall = 1, $all = 'All', $sort_column = 'ID', $sort_order = 'asc', $file = '', $list = true, $optiondates = 0,
     
    651651 *
    652652 * @param string|array $args
    653  * @return unknown
     653 * @return string
    654654 */
    655655function wp_list_cats($args = '') {
     
    692692 * @param int $selected
    693693 * @param int $exclude
    694  * @return unknown
     694 * @return string
    695695 */
    696696function dropdown_cats($optionall = 1, $all = 'All', $orderby = 'ID', $order = 'asc',
     
    727727 * @param string $feed
    728728 * @param string $feed_image
    729  * @return unknown
     729 * @return null|string
    730730 */
    731731function list_authors($optioncount = false, $exclude_admin = true, $show_fullname = false, $hide_empty = true, $feed = '', $feed_image = '') {
     
    744744 * @param int $blogid Not Used
    745745 * @param int $post_ID
    746  * @return unknown
     746 * @return array
    747747 */
    748748function wp_get_post_cats($blogid = '1', $post_ID = 0) {
     
    762762 * @param int $post_ID
    763763 * @param array $post_categories
    764  * @return unknown
     764 * @return bool|mixed
    765765 */
    766766function wp_set_post_cats($blogid = '1', $post_ID = 0, $post_categories = array()) {
     
    781781 * @param string $after
    782782 * @param bool $show_post_count
    783  * @return unknown
     783 * @return string|null
    784784 */
    785785function get_archives($type='', $limit='', $format='html', $before = '', $after = '', $show_post_count = false) {
     
    10991099 *
    11001100 * @param object $link
    1101  * @return unknown
     1101 * @return mixed
    11021102 */
    11031103function get_linkrating($link) {
Note: See TracChangeset for help on using the changeset viewer.