| @@ -47,8 +47,21 @@ | ||
| 47 | 47 | function __construct( $user = false ) { |
| 48 | 48 | parent::__construct( $user ); |
| 49 | 49 | } |
| 50 | 50 | |
| 51 | + /** | |
| 52 | + * This method removes the deprecated 'is_beta' property from the serialized data. | |
| 53 | + * Should clean up the serialized data to avoid PHP 8.2 warning on next execution. | |
| 54 | + * | |
| 55 | + * @return void | |
| 56 | + */ | |
| 57 | + function __wakeup() { | |
| 58 | + if ( property_exists( $this, 'is_beta' ) ) { | |
| 59 | + // If we enter here, and we are running PHP 8.2, we already had the warning. But we sanitize data for next execution. | |
| 60 | + unset( $this->is_beta ); | |
| 61 | + } | |
| 62 | + } | |
| 63 | + | |
| 51 | 64 | function get_name() { |
| 52 | 65 | return trim( ucfirst( trim( is_string( $this->first ) ? $this->first : '' ) ) . ' ' . ucfirst( trim( is_string( $this->last ) ? $this->last : '' ) ) ); |
| 53 | 66 | } |
| 54 | 67 | |