WP_Block_Patterns_Registry::__wakeup
Method of the class: WP_Block_Patterns_Registry{}
No Hooks.
Returns
null. Nothing (null).
Usage
$WP_Block_Patterns_Registry = new WP_Block_Patterns_Registry(); $WP_Block_Patterns_Registry->__wakeup();
WP_Block_Patterns_Registry::__wakeup() WP Block Patterns Registry:: wakeup code WP 6.9.1
public function __wakeup() {
if ( ! $this->registered_patterns ) {
return;
}
if ( ! is_array( $this->registered_patterns ) ) {
throw new UnexpectedValueException();
}
foreach ( $this->registered_patterns as $value ) {
if ( ! is_array( $value ) ) {
throw new UnexpectedValueException();
}
}
$this->registered_patterns_outside_init = array();
}