Yoast\WP\Lib

Model::__unset()publicYoast 1.0

Magic unset method, allows unset($model->property)

Метод класса: Model{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$Model = new Model();
$Model->__unset( $property );
$property(строка) (обязательный)
The property to unset.

Код Model::__unset() Yoast 22.4

public function __unset( $property ) {
	$this->orm->__unset( $property );
}