WP_Block_Bindings_Source::__wakeup()publicWP 6.5.0

Wakeup magic method.

Method of the class: WP_Block_Bindings_Source{}

No Hooks.

Return

null. Nothing (null).

Usage

$WP_Block_Bindings_Source = new WP_Block_Bindings_Source();
$WP_Block_Bindings_Source->__wakeup();

Changelog

Since 6.5.0 Introduced.

WP_Block_Bindings_Source::__wakeup() code WP 6.7.1

public function __wakeup() {
	throw new \LogicException( __CLASS__ . ' should never be unserialized' );
}