WpOrg\Requests

Session::__get()publicWP 1.0

Get a property's value

Method of the class: Session{}

No Hooks.

Return

Mixed|null. Property value, null if none found

Usage

$Session = new Session();
$Session->__get( $name );
$name(string) (required)
Property name.

Session::__get() code WP 6.6.2

public function __get($name) {
	if (isset($this->options[$name])) {
		return $this->options[$name];
	}

	return null;
}