WC_Product_Download::offsetSet()publicWC 1.0ReturnTypeWillChange

OffsetSet.

Method of the class: WC_Product_Download{}

No Hooks.

Return

null. Nothing (null).

Usage

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

WC_Product_Download::offsetSet() code WC 8.7.0

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