Automattic\WooCommerce\StoreApi
SessionHandler::forget_session
Forget all session data without destroying persisted storage.
Метод класса: SessionHandler{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$SessionHandler = new SessionHandler(); $SessionHandler->forget_session();
Код SessionHandler::forget_session() SessionHandler::forget session WC 11.0.1
public function forget_session() {
$this->_data = array();
$this->_dirty = false;
$this->_customer_id = null;
}