WP_Object_Cache::__get()publicWP 4.0.0

Makes private properties readable for backward compatibility.

Method of the class: WP_Object_Cache{}

No Hooks.

Return

Mixed. Property.

Usage

$WP_Object_Cache = new WP_Object_Cache();
$WP_Object_Cache->__get( $name );
$name(string) (required)
Property to get.

Changelog

Since 4.0.0 Introduced.

WP_Object_Cache::__get() code WP 6.5.2

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