Make WordPress Core


Ignore:
Timestamp:
04/28/2022 09:47:19 AM (4 years ago)
Author:
johnbillion
Message:

Docs: Various docblock corrections.

See #54729

File:
1 edited

Legend:

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

    r53238 r53300  
    33693369     * @since 4.4.0
    33703370     *
    3371      * @param bool|null $delete       Whether to go forward with deletion.
    3372      * @param WP_Post   $post         Post object.
    3373      * @param bool      $force_delete Whether to bypass the Trash.
     3371     * @param WP_Post|false|null $delete       Whether to go forward with deletion. @TODO description
     3372     * @param WP_Post            $post         Post object.
     3373     * @param bool               $force_delete Whether to bypass the Trash.
    33743374     */
    33753375    $check = apply_filters( 'pre_delete_post', null, $post, $force_delete );
     
    63456345     * @since 5.5.0
    63466346     *
    6347      * @param bool|null $delete       Whether to go forward with deletion.
    6348      * @param WP_Post   $post         Post object.
    6349      * @param bool      $force_delete Whether to bypass the Trash.
     6347     * @param WP_Post|false|null $delete       Whether to go forward with deletion. @TODO description
     6348     * @param WP_Post            $post         Post object.
     6349     * @param bool               $force_delete Whether to bypass the Trash.
    63506350     */
    63516351    $check = apply_filters( 'pre_delete_attachment', null, $post, $force_delete );
Note: See TracChangeset for help on using the changeset viewer.