Yoast\WP\Lib
Abstract_Main::__set()
Prevents setting dynamic properties and unsetting declared properties from an inaccessible context.
Метод класса: Abstract_Main{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$Abstract_Main = new Abstract_Main(); $Abstract_Main->__set( $name, $value ) // @phpcs:ignore Generic.CodeAnalysis.UnusedFunctionParameter.FoundAfterLastUsed -- __set must have a name and value - PHPCS #3715.;
- $name(строка) (обязательный)
- The property name.
- $value(разное) (обязательный)
- The property value.
Код Abstract_Main::__set() Abstract Main:: set Yoast 24.0
public function __set( $name, $value ) { // @phpcs:ignore Generic.CodeAnalysis.UnusedFunctionParameter.FoundAfterLastUsed -- __set must have a name and value - PHPCS #3715. throw Forbidden_Property_Mutation_Exception::cannot_set_because_property_is_immutable( $name ); }