Changeset 42875 for trunk/src/wp-includes/class-wp-comment-query.php
- Timestamp:
- 03/25/2018 06:09:56 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-comment-query.php
r42376 r42875 450 450 * @since 3.1.0 451 451 * 452 * @param array$_comments An array of comments.453 * @param WP_Comment_Query $this Current instance of WP_Comment_Query (passed by reference).452 * @param WP_Comment[] $_comments An array of comments. 453 * @param WP_Comment_Query $this Current instance of WP_Comment_Query (passed by reference). 454 454 */ 455 455 $_comments = apply_filters_ref_array( 'the_comments', array( $_comments, &$this ) ); … … 850 850 * @since 3.1.0 851 851 * 852 * @param array $pieces A compactedarray of comment query clauses.853 * @param WP_Comment_Query $this Current instance of WP_Comment_Query (passed by reference).852 * @param string[] $pieces An associative array of comment query clauses. 853 * @param WP_Comment_Query $this Current instance of WP_Comment_Query (passed by reference). 854 854 */ 855 855 $clauses = apply_filters_ref_array( 'comments_clauses', array( compact( $pieces ), &$this ) ); … … 933 933 * @global wpdb $wpdb WordPress database abstraction object. 934 934 * 935 * @param array$comments Array of top-level comments whose descendants should be filled in.935 * @param WP_Comment[] $comments Array of top-level comments whose descendants should be filled in. 936 936 * @return array 937 937 */
Note: See TracChangeset
for help on using the changeset viewer.