You appear to be a bot. Output may be restricted
Description
Prevents unsetting dynamic properties and unsetting declared properties from an inaccessible context.
Usage
$void = Abstract_Main::__unset( $name );
Parameters
- $name
- ( string ) required – The property name.
Returns
void
Source
File name: wordpress-seo/lib/abstract-main.php
Lines:
1 to 4 of 4
public function __unset( $name ) { throw Forbidden_Property_Mutation_Exception::cannot_unset_because_property_is_immutable( $name ); }