- Timestamp:
- 09/28/2025 09:54:21 PM (2 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-block-bindings-registry.php
r60796 r60804 258 258 259 259 /** 260 * Unserialize magic method. 261 * 262 * @since 6.9.0 263 * 264 * @param array $data Data to unserialize. 265 */ 266 public function __unserialize( $data ) { // phpcs:ignore PHPCompatibility.FunctionNameRestrictions.NewMagicMethods.__unserializeFound 260 * Wakeup magic method. 261 * 262 * @since 6.5.0 263 */ 264 public function __wakeup() { 267 265 if ( ! $this->sources ) { 268 266 return; … … 279 277 280 278 /** 281 * Wakeup magic method.282 *283 * @since 6.5.0284 */285 public function __wakeup() {286 $this->__unserialize( array() );287 }288 289 /**290 279 * Utility method to retrieve the main instance of the class. 291 280 *
Note: See TracChangeset
for help on using the changeset viewer.