WC_Queue::get_class
Get class to instantiate
And make sure 3rd party code has the chance to attach a custom queue class.
Method of the class: WC_Queue{}
Hooks from the method
Returns
String.
Usage
$result = WC_Queue::get_class();
WC_Queue::get_class() WC Queue::get class code WC 10.8.1
protected static function get_class() {
if ( ! did_action( 'plugins_loaded' ) ) {
wc_doing_it_wrong( __FUNCTION__, __( 'This function should not be called before plugins_loaded.', 'woocommerce' ), '3.5.0' );
}
return apply_filters( 'woocommerce_queue_class', self::$default_cass );
}