From 8b434354c604177b9ccd233450f0eff1c8a27726 Mon Sep 17 00:00:00 2001 From: Laurence Bahiirwa Date: Fri, 12 Sep 2025 08:10:30 +0300 Subject: [PATCH] [php82] [php-error] Add missing property from serialized object for the support_skype requirement. --- includes/entities/class-fs-plugin-plan.php | 6 ++++++ start.php | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/includes/entities/class-fs-plugin-plan.php b/includes/entities/class-fs-plugin-plan.php index bf537a9a..3316eb96 100755 --- a/includes/entities/class-fs-plugin-plan.php +++ b/includes/entities/class-fs-plugin-plan.php @@ -75,6 +75,12 @@ class FS_Plugin_Plan extends FS_Entity { * @var string Support phone. */ public $support_phone; + /** + * @var string Support skype username. + * + * @deprecated 2.12.1 + */ + public $support_skype = ''; /** * @var bool Is personal success manager supported with the plan. */ diff --git a/start.php b/start.php index 2a988e55..fdb552eb 100644 --- a/start.php +++ b/start.php @@ -15,7 +15,7 @@ * * @var string */ - $this_sdk_version = '2.12.1.3'; + $this_sdk_version = '2.12.1.4'; #region SDK Selection Logic --------------------------------------------------------------------