WC_Customer_Download::offsetGet()publicWC 1.0ReturnTypeWillChange

OffsetGet.

Метод класса: WC_Customer_Download{}

Хуков нет.

Возвращает

Разное.

Использование

$WC_Customer_Download = new WC_Customer_Download();
$WC_Customer_Download->offsetGet( $offset );
$offset(разное) (обязательный)
Offset.

Код WC_Customer_Download::offsetGet() WC 8.7.0

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