WC_Customer_Download::__isset()publicWC 1.0

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

Method of the class: WC_Customer_Download{}

No Hooks.

Return

true|false.

Usage

$WC_Customer_Download = new WC_Customer_Download();
$WC_Customer_Download->__isset( $key );
$key(string) (required)
Key name.

WC_Customer_Download::__isset() code WC 8.7.0

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