- Timestamp:
- 09/28/2025 09:54:21 PM (3 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/html-api/class-wp-html-open-elements.php
r60796 r60804 843 843 844 844 /** 845 * Unserialize magic method. 846 * 847 * @since 6.9.0 848 * 849 * @param array $data Data to unserialize. 850 */ 851 public function __unserialize( $data ) { // phpcs:ignore PHPCompatibility.FunctionNameRestrictions.NewMagicMethods.__unserializeFound 845 * Wakeup magic method. 846 * 847 * @since 6.6.0 848 */ 849 public function __wakeup() { 852 850 throw new \LogicException( __CLASS__ . ' should never be unserialized' ); 853 851 } 854 855 /**856 * Wakeup magic method.857 *858 * @since 6.6.0859 */860 public function __wakeup() {861 $this->__unserialize( array() );862 }863 852 }
Note: See TracChangeset
for help on using the changeset viewer.