WC_Data_Store::get_current_class_name()publicWC 3.0.0

Returns the class name of the current data store.

Method of the class: WC_Data_Store{}

No Hooks.

Return

String.

Usage

$WC_Data_Store = new WC_Data_Store();
$WC_Data_Store->get_current_class_name();

Changelog

Since 3.0.0 Introduced.

WC_Data_Store::get_current_class_name() code WC 8.7.0

public function get_current_class_name() {
	return $this->current_class_name;
}