Make WordPress Core

Changeset 33898


Ignore:
Timestamp:
09/04/2015 01:37:23 AM (8 years ago)
Author:
DrewAPicture
Message:

Docs: Add a missing file header for wp-includes/class-wp-comment-query.php, introduced in [33750].

Also clarifies the class DocBlock summary and tags for WP_Comment_Query.

See #33413. See #33701.

File:
1 edited

Legend:

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

    r33891 r33898  
    11<?php
    22/**
    3  * WordPress Comment Query class.
     3 * Comments API: WP_Comment_Query class
    44 *
    5  * See WP_Comment_Query::__construct() for accepted arguments.
     5 * @package WordPress
     6 * @subpackage Comment
     7 * @since 4.4.0
     8 */
     9
     10/**
     11 * Core class used for querying comments.
    612 *
    713 * @since 3.1.0
    8  * @package WordPress
    9  * @subpackage Comment
     14 *
     15 * @see WP_Comment_Query::__construct() for accepted arguments.
    1016 */
    1117class WP_Comment_Query {
     18
    1219    /**
    1320     * SQL for database query.
Note: See TracChangeset for help on using the changeset viewer.