As of now there are several deprecation notices when using PHP 8.2.
PHP Deprecated: Creation of dynamic property Members\Admin\Settings_Page::$admin_pages is deprecated in /wp-content/plugins/members/admin/class-settings.php on line 222
PHP Deprecated: Creation of dynamic property Members\Admin\Settings_Page::$addons_page is deprecated in /wp-content/plugins/members/admin/class-settings.php on line 225
PHP Deprecated: Creation of dynamic property Members\Admin\Settings_Page::$payments_page is deprecated in /wp-content/plugins/members/admin/class-settings.php on line 228
PHP Deprecated: Creation of dynamic property Members\Admin\Settings_Page::$about_page is deprecated in /wp-content/plugins/members/admin/class-settings.php on line 231
Solution
Declare the properties in the Settings_Page class.
final class Settings_Page {
public array $admin_pages;
public string $addons_page;
public string $payments_page;
public string $about_page;
// ...............
}
Problem
As of now there are several deprecation notices when using PHP 8.2.
Solution
Declare the properties in the
Settings_Page
class.