WC_Cart_Fees::get_fees()publicWC 1.0

Get fees.

Method of the class: WC_Cart_Fees{}

No Hooks.

Return

Array.

Usage

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

WC_Cart_Fees::get_fees() code WC 8.7.0

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

	return $this->fees;
}