WC_Customer_Download::offsetSet
OffsetSet.
Method of the class: WC_Customer_Download{}
No Hooks.
Returns
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 10.7.0
public function offsetSet( $offset, $value ) {
if ( is_callable( array( $this, "set_$offset" ) ) ) {
$this->{"set_$offset"}( $value );
}
}