WC_Customer_Download::offsetSet()
[\ReturnTypeWillChange]{} It's a method of the class: WC_Customer_Download{}
No Hooks.
Return
null
. Nothing.
Usage
$WC_Customer_Download = new WC_Customer_Download(); $WC_Customer_Download->offsetSet( $offset, $value );
- $offset (required)
- -
- $value (required)
- -
Code of WC_Customer_Download::offsetSet() WC Customer Download::offsetSet WC 6.7.0
public function offsetSet( $offset, $value ) { if ( is_callable( array( $this, "set_$offset" ) ) ) { $this->{"set_$offset"}( $value ); } }