WP_Text_Diff_Renderer_Table::__unset( string $name )
Make private properties un-settable for backward compatibility.
Parameters
- $name
-
(Required) Property to unset.
Source
File: wp-includes/class-wp-text-diff-renderer-table.php
public function __unset( $name ) {
if ( in_array( $name, $this->compat_fields ) ) {
unset( $this->$name );
}
}
Changelog
Version | Description |
---|---|
4.0.0 | Introduced. |