Make WordPress Core


Ignore:
Timestamp:
09/07/2010 11:21:11 AM (13 years ago)
Author:
nacin
Message:

Phpdoc argument/@param cleanups. props duck_, see #14783.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/comment.php

    r15560 r15590  
    440440 *
    441441 * @param int $comment_id Comment ID.
    442  * @param string $key Metadata name.
    443  * @param mixed $value Metadata value.
     442 * @param string $meta_key Metadata name.
     443 * @param mixed $meta_value Metadata value.
    444444 * @param bool $unique Optional, default is false. Whether the same key should not be added.
    445445 * @return bool False for failure. True for success.
     
    499499 *
    500500 * @param int $comment_id Comment ID.
    501  * @param string $key Metadata key.
    502  * @param mixed $value Metadata value.
     501 * @param string $meta_key Metadata key.
     502 * @param mixed $meta_value Metadata value.
    503503 * @param mixed $prev_value Optional. Previous value to check before removing.
    504504 * @return bool False on failure, true if success.
     
    18591859 * @subpackage Cache
    18601860 *
    1861  * @param int|array $id Comment ID or array of comment IDs to remove from cache
     1861 * @param int|array $ids Comment ID or array of comment IDs to remove from cache
    18621862 */
    18631863function clean_comment_cache($ids) {
Note: See TracChangeset for help on using the changeset viewer.