WC_Cart_Fees::get_feespublicWC 1.0

Get fees.

Method of the class: WC_Cart_Fees{}

No Hooks.

Returns

Array.

Usage

$WC_Cart_Fees = new WC_Cart_Fees();
$WC_Cart_Fees->get_fees();

WC_Cart_Fees::get_fees() code WC 10.5.0

public function get_fees() {
	uasort( $this->fees, array( $this, 'sort_fees_callback' ) );

	return $this->fees;
}