Make WordPress Core

Changeset 48816


Ignore:
Timestamp:
08/18/2020 12:37:39 PM (4 years ago)
Author:
SergeyBiryukov
Message:

Docs: Correct alignment for some DocBlocks in WP_Query::get_posts().

See #50768.

File:
1 edited

Legend:

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

    r48586 r48816  
    25592559             *
    25602560             * @param string   $where The WHERE clause of the query.
    2561              * @param WP_Query $this The WP_Query instance (passed by reference).
     2561             * @param WP_Query $this  The WP_Query instance (passed by reference).
    25622562             */
    25632563            $where = apply_filters_ref_array( 'posts_where', array( $where, &$this ) );
     
    25682568             * @since 1.5.0
    25692569             *
    2570              * @param string   $join  The JOIN clause of the query.
     2570             * @param string   $join The JOIN clause of the query.
    25712571             * @param WP_Query $this The WP_Query instance (passed by reference).
    25722572             */
     
    26102610                 *
    26112611                 * @param string   $cjoin The JOIN clause of the query.
    2612                  * @param WP_Query $this The WP_Query instance (passed by reference).
     2612                 * @param WP_Query $this  The WP_Query instance (passed by reference).
    26132613                 */
    26142614                $cjoin = apply_filters_ref_array( 'comment_feed_join', array( $cjoin, &$this ) );
     
    26942694             *
    26952695             * @param string   $where The WHERE clause of the query.
    2696              * @param WP_Query $this The WP_Query instance (passed by reference).
     2696             * @param WP_Query $this  The WP_Query instance (passed by reference).
    26972697             */
    26982698            $where = apply_filters_ref_array( 'posts_where_paged', array( $where, &$this ) );
     
    27152715             * @since 1.5.0
    27162716             *
    2717              * @param string   $join  The JOIN clause of the query.
     2717             * @param string   $join The JOIN clause of the query.
    27182718             * @param WP_Query $this The WP_Query instance (passed by reference).
    27192719             */
     
    28062806             *
    28072807             * @param string   $where The WHERE clause of the query.
    2808              * @param WP_Query $this The WP_Query instance (passed by reference).
     2808             * @param WP_Query $this  The WP_Query instance (passed by reference).
    28092809             */
    28102810            $where = apply_filters_ref_array( 'posts_where_request', array( $where, &$this ) );
     
    28292829             * @since 2.5.0
    28302830             *
    2831              * @param string   $join  The JOIN clause of the query.
     2831             * @param string   $join The JOIN clause of the query.
    28322832             * @param WP_Query $this The WP_Query instance (passed by reference).
    28332833             */
     
    31863186             *
    31873187             * @param WP_Post[] $posts Array of post objects.
    3188              * @param WP_Query  $this The WP_Query instance (passed by reference).
     3188             * @param WP_Query  $this  The WP_Query instance (passed by reference).
    31893189             */
    31903190            $this->posts = apply_filters_ref_array( 'the_posts', array( $this->posts, &$this ) );
Note: See TracChangeset for help on using the changeset viewer.