Make WordPress Core

Changeset 36248


Ignore:
Timestamp:
01/10/2016 12:51:35 AM (11 years ago)
Author:
johnbillion
Message:

Comments: Correct the docblocks for various methods in the comment list table class.

See #32246

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-comments-list-table.php

    r35811 r36248  
    511511         * @global string $comment_status Status for the current listed comments.
    512512         *
    513          * @param object $comment     Comment being acted upon.
    514          * @param string $column_name Current column name.
    515          * @param string $primary     Primary column name.
     513         * @param WP_Comment $comment     The comment object.
     514         * @param string     $column_name Current column name.
     515         * @param string     $primary     Primary column name.
    516516         * @return string|void Comment row actions output.
    517517         */
     
    622622        /**
    623623         *
    624          * @param object $comment
     624         * @param WP_Comment $comment The comment object.
    625625         */
    626626        public function column_cb( $comment ) {
     
    633633
    634634        /**
    635          * @param object $comment
     635         * @param WP_Comment $comment The comment object.
    636636         */
    637637        public function column_comment( $comment ) {
     
    673673         * @global string $comment_status
    674674         *
    675          * @param object $comment
     675         * @param WP_Comment $comment The comment object.
    676676         */
    677677        public function column_author( $comment ) {
     
    713713        /**
    714714         * @access public
     715         *
     716         * @param WP_Comment $comment The comment object.
    715717         */
    716718        public function column_date( $comment ) {
     
    729731        /**
    730732         * @access public
    731          */
    732         public function column_response() {
     733         *
     734         * @param WP_Comment $comment The comment object.
     735         */
     736        public function column_response( $comment ) {
    733737                $post = get_post();
    734738
     
    766770        /**
    767771         *
    768          * @param object $comment
    769          * @param string $column_name
     772         * @param WP_Comment $comment     The comment object.
     773         * @param string     $column_name The custom column's name.
    770774         */
    771775        public function column_default( $comment, $column_name ) {
Note: See TracChangeset for help on using the changeset viewer.