WpOrg\Requests

Session::__setpublicWP 1.0

Set a property's value

Method of the class: Session{}

No Hooks.

Returns

null. Nothing (null).

Usage

$Session = new Session();
$Session->__set( $name, $value );
$name(string) (required)
Property name.
$value(mixed) (required)
Property value.

Session::__set() code WP 7.0

public function __set($name, $value) {
	$this->options[$name] = $value;
}