Fix #49982 - "Creation of dynamic property WC_Beta_Tester::$wporg_data is deprecated" on PHP 8.2 (#49983)
* Fix #49982 Fixes #49982 * Add changefile(s) from automation for the following project(s): woocommerce-beta-tester --------- Co-authored-by: Vladimir Reznichenko <kalessil@gmail.com> Co-authored-by: github-actions <github-actions@github.com> Co-authored-by: Adrian Moldovan <3854374+adimoldovan@users.noreply.github.com>
This commit is contained in:
parent
0b13563a2f
commit
9fefa6a54d
|
@ -0,0 +1,4 @@
|
|||
Significance: minor
|
||||
Type: fix
|
||||
|
||||
Fix "Creation of dynamic property WC_Beta_Tester::$wporg_data is deprecated" on PHP 8.2
|
|
@ -33,6 +33,13 @@ class WC_Beta_Tester {
|
|||
*/
|
||||
protected static $instance = null;
|
||||
|
||||
/**
|
||||
* WP.org data
|
||||
*
|
||||
* @var object
|
||||
*/
|
||||
private $wporg_data;
|
||||
|
||||
/**
|
||||
* Main Instance.
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue