You appear to be a bot. Output may be restricted
Description
Make private properties un-settable for backwards compatibility.
Usage
BW_List_Table::__unset( $name );
Parameters
- $name
- ( string ) required – Property to unset.
Returns
voidSource
File name: oik/admin/class-bw-list-table.phpLines:
1 to 5 of 5
public function __unset( $name ) { if ( in_array( $name, $this->compat_fields ) ) { unset( $this->$name ); } }View on GitHub View on Trac