Make WordPress Core


Ignore:
Timestamp:
09/04/2020 08:39:47 PM (4 years ago)
Author:
johnbillion
Message:

Docs: Various docblock corrections and improvements.

See #50768

File:
1 edited

Legend:

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

    r47597 r48941  
    1818     * Comment ID.
    1919     *
    20      * @since 4.4.0
    21      * @var int
     20     * A numeric string, for compatibility reasons.
     21     *
     22     * @since 4.4.0
     23     * @var string
    2224     */
    2325    public $comment_ID;
     
    2628     * ID of the post the comment is associated with.
    2729     *
    28      * @since 4.4.0
    29      * @var int
     30     * A numeric string, for compatibility reasons.
     31     *
     32     * @since 4.4.0
     33     * @var string
    3034     */
    3135    public $comment_post_ID = 0;
     
    9094     * Comment karma count.
    9195     *
    92      * @since 4.4.0
    93      * @var int
     96     * A numeric string, for compatibility reasons.
     97     *
     98     * @since 4.4.0
     99     * @var string
    94100     */
    95101    public $comment_karma = 0;
     
    123129     * Parent comment ID.
    124130     *
    125      * @since 4.4.0
    126      * @var int
     131     * A numeric string, for compatibility reasons.
     132     *
     133     * @since 4.4.0
     134     * @var string
    127135     */
    128136    public $comment_parent = 0;
     
    131139     * Comment author ID.
    132140     *
    133      * @since 4.4.0
    134      * @var int
     141     * A numeric string, for compatibility reasons.
     142     *
     143     * @since 4.4.0
     144     * @var string
    135145     */
    136146    public $user_id = 0;
Note: See TracChangeset for help on using the changeset viewer.