WC_Data_Store::__sleep()publicWC 1.0

Only store the object type to avoid serializing the data store instance.

Method of the class: WC_Data_Store{}

No Hooks.

Return

Array.

Usage

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

WC_Data_Store::__sleep() code WC 8.7.0

public function __sleep() {
	return array( 'object_type' );
}