WP_Text_Diff_Renderer_Table::__getpublicWP 4.0.0

Make private properties readable for backward compatibility.

Method of the class: WP_Text_Diff_Renderer_Table{}

No Hooks.

Returns

Mixed. A declared property's value, else null.

Usage

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

Changelog

Since 4.0.0 Introduced.
Since 6.4.0 Getting a dynamic property is deprecated.

WP_Text_Diff_Renderer_Table::__get() code WP 6.8.1

public function __get( $name ) {
	if ( in_array( $name, $this->compat_fields, true ) ) {
		return $this->$name;
	}

	wp_trigger_error(
		__METHOD__,
		"The property `{$name}` is not declared. Getting a dynamic property is " .
		'deprecated since version 6.4.0! Instead, declare the property on the class.',
		E_USER_DEPRECATED
	);
	return null;
}