WC_Customer_Download::offsetGet()publicWC 1.0ReturnTypeWillChange

OffsetGet.

Method of the class: WC_Customer_Download{}

No Hooks.

Return

Mixed.

Usage

$WC_Customer_Download = new WC_Customer_Download();
$WC_Customer_Download->offsetGet( $offset );
$offset(mixed) (required)
Offset.

WC_Customer_Download::offsetGet() code WC 8.7.0

public function offsetGet( $offset ) {
	if ( is_callable( array( $this, "get_$offset" ) ) ) {
		return $this->{"get_$offset"}();
	}
}