Yoast\WP\SEO\Surfaces\Values
Meta::__unset()
Prevents unsetting dynamic properties and unsetting declared properties from an inaccessible context.
Метод класса: Meta{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$Meta = new Meta(); $Meta->__unset( $name );
- $name(строка) (обязательный)
- The property name.
Код Meta::__unset() Meta:: unset Yoast 24.9
public function __unset( $name ) { throw Forbidden_Property_Mutation_Exception::cannot_unset_because_property_is_immutable( $name ); }