WC_Customer_Download::__isset( string $key )

Magic __isset method for backwards compatibility. Legacy properties which could be accessed directly in the past.


Description Description


Parameters Parameters

$key

(Required) Key name.


Top ↑

Return Return

(bool)


Top ↑

Source Source

File: includes/class-wc-customer-download.php

	public function __isset( $key ) {
		return in_array( $key, array_keys( $this->data ), true );
	}

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.