Unused parameter removed form get_filters method of WC_Helper class. (#17888)

This commit is contained in:
The Dramatist 2017-11-23 17:49:12 +06:00 committed by Mike Jolley
parent 18e7b25eab
commit 8ac49d448b
1 changed files with 1 additions and 3 deletions

View File

@ -321,11 +321,9 @@ class WC_Helper {
/**
* Get available subscriptions filters.
*
* @param array Optional subscriptions array to generate counts.
*
* @return array An array of filter keys and labels.
*/
public static function get_filters( $subscriptions = null ) {
public static function get_filters() {
$filters = array(
'all' => __( 'All', 'woocommerce' ),
'active' => __( 'Active', 'woocommerce' ),