WC_Customer_Download::offsetSet()
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() WC Customer Download::offsetSet code WC 9.4.2
public function offsetSet( $offset, $value ) { if ( is_callable( array( $this, "set_$offset" ) ) ) { $this->{"set_$offset"}( $value ); } }