Fix formatting and add a missing return description for inline documentation introduced in [32644] for WP_Media_List_Table.

See . See .


git-svn-id: https://develop.svn.wordpress.org/trunk@32663 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Drew Jaynes 2015-05-31 01:31:11 +00:00
parent e3077edcad
commit 0041aea872

@ -506,7 +506,7 @@ foreach ( $columns as $column_name => $column_display_name ) {
/** /**
* Fires for each custom column in the Media list table. * Fires for each custom column in the Media list table.
* *
* Custom columns are registered using the 'manage_media_columns' filter. * Custom columns are registered using the {@see 'manage_media_columns'} filter.
* *
* @since 2.5.0 * @since 2.5.0
* *
@ -530,12 +530,12 @@ foreach ( $columns as $column_name => $column_display_name ) {
} }
/** /**
* Get name of default primary column * Get the name of the default primary column.
* *
* @since 4.3.0 * @since 4.3.0
* @access protected * @access protected
* *
* @return string * @return string Name of the default primary column, in this case, 'title'.
*/ */
protected function get_default_primary_column_name() { protected function get_default_primary_column_name() {
return 'title'; return 'title';