WC_Session::__get()publicWC 1.0

Magic get method.

Method of the class: WC_Session{}

No Hooks.

Return

Mixed.

Usage

$WC_Session = new WC_Session();
$WC_Session->__get( $key );
$key(mixed) (required)
Key to get.

WC_Session::__get() code WC 8.7.0

public function __get( $key ) {
	return $this->get( $key );
}