WC_Customer_Download::offsetSet()publicWC 1.0ReturnTypeWillChange

OffsetSet.

Method of the class: WC_Customer_Download{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Customer_Download = new WC_Customer_Download();
$WC_Customer_Download->offsetSet( $offset, $value );
$offset(mixed) (required)
Offset.
$value(mixed) (required)
Value.

WC_Customer_Download::offsetSet() code WC 8.7.0

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