WP_Ability_Category::__wakeuppublicWP 6.9.0

Wakeup magic method.

Method of the class: WP_Ability_Category{}

No Hooks.

Returns

null. Nothing (null).

Usage

$WP_Ability_Category = new WP_Ability_Category();
$WP_Ability_Category->__wakeup(): void;

Changelog

Since 6.9.0 Introduced.

WP_Ability_Category::__wakeup() code WP 6.9.1

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