Merge pull request #9971 from frozzare/docs/wc-admin

Add missing param tags to various wc admin docblocks
This commit is contained in:
Claudio Sanches 2016-01-05 13:59:41 -02:00
commit d25f999aa0
2 changed files with 5 additions and 0 deletions

View File

@ -222,6 +222,8 @@ class WC_Report_Customer_List extends WP_List_Table {
/**
* Get columns.
*
* @return array
*/
public function get_columns() {
$columns = array(
@ -240,6 +242,8 @@ class WC_Report_Customer_List extends WP_List_Table {
/**
* Order users by name.
*
* @param WP_User_Query $query
*/
public function order_by_last_name( $query ) {
global $wpdb;

View File

@ -159,6 +159,7 @@ function woocommerce_update_options( $options ) {
* Get a setting from the settings API.
*
* @param mixed $option_name
* @param mixed $default
* @return string
*/
function woocommerce_settings_get_option( $option_name, $default = '' ) {