WC_Customer_Download::offsetGet
OffsetGet.
Method of the class: WC_Customer_Download{}
No Hooks.
Returns
Mixed.
Usage
$WC_Customer_Download = new WC_Customer_Download(); $WC_Customer_Download->offsetGet( $offset );
- $offset(mixed) (required)
- Offset.
WC_Customer_Download::offsetGet() WC Customer Download::offsetGet code WC 10.4.3
public function offsetGet( $offset ) {
if ( is_callable( array( $this, "get_$offset" ) ) ) {
return $this->{"get_$offset"}();
}
}