Yoast\WP\Lib
Model::__unset
Magic unset method, allows unset($model->property)
Метод класса: Model{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$Model = new Model(); $Model->__unset( $property );
- $property(строка) (обязательный)
- The property to unset.
Код Model::__unset() Model:: unset Yoast 26.3
public function __unset( $property ) {
$this->orm->__unset( $property );
}