Deprecated: Creation of dynamic property
-
PHP 8.2 issue – your WpMenuCart class is creating dynamic properties –
https://php.watch/versions/8.2/dynamic-properties-deprecatedThis results in quite a few deprication notices, just need to define your classes properties in advance to fix this as there is no need for them to be dynamic.
public $settings; public $menu_items; public $shop;
The above seems to clear them for me – there may be more, are you going to release an update to support PHP 8.2? As PHP 7 is reaching EOL.
Happy to help if you need assistance.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Deprecated: Creation of dynamic property’ is closed to new replies.