WP_Object_Cache::__set() – Method | Developer.WordPress.org

Makes private properties settable for backward compatibility.

Parameters

$namestringrequired

Property to set.

$valuemixedrequired

Property value.

Source

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

View all references View on Trac View on GitHub

Changelog

VersionDescription
4.0.0Introduced.