WC_Customer_Download::offsetUnset()publicWC 1.0ReturnTypeWillChange

OffsetUnset

Method of the class: WC_Customer_Download{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Customer_Download = new WC_Customer_Download();
$WC_Customer_Download->offsetUnset( $offset );
$offset(mixed) (required)
Offset.

WC_Customer_Download::offsetUnset() code WC 8.7.0

public function offsetUnset( $offset ) {
	if ( is_callable( array( $this, "set_$offset" ) ) ) {
		$this->{"set_$offset"}( '' );
	}
}