Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
06/02/2024 01:06:10 AM (6 months ago)
Author:
espellcaste
Message:

PHPDoc: remove superfluous comments from boolean returns.

See #9164

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-messages/bp-messages-functions.php

    r13503 r13890  
    215215 * @param string $subject Subject of the notice.
    216216 * @param string $message Content of the notice.
    217  * @return bool True on success, false on failure.
     217 * @return bool
    218218 */
    219219function messages_send_notice( $subject, $message ) {
     
    257257 * @param int       $user_id    ID of the user to delete the threads for. Defaults
    258258 *                              to the current logged-in user.
    259  * @return bool True on success, false on failure.
     259 * @return bool
    260260 */
    261261function messages_delete_thread( $thread_ids, $user_id = 0 ) {
     
    463463 * @param string|bool $meta_value Meta value to delete. Default false.
    464464 * @param bool        $delete_all Whether or not to delete all meta data.
    465  *
    466  * @return bool True on successful delete, false on failure.
     465 * @return bool
    467466 */
    468467function bp_messages_delete_meta( $message_id, $meta_key = false, $meta_value = false, $delete_all = false ) {
     
    815814 * @param int       $user_id    ID of the user to delete the threads for. Defaults
    816815 *                              to the current logged-in user.
    817  * @return bool True on success, false on failure.
     816 * @return bool
    818817 */
    819818function bp_messages_exit_thread( $thread_ids, $user_id = 0 ) {
Note: See TracChangeset for help on using the changeset viewer.