06-11-2025 08:44 AM
Hello,
We are using the updated version of Magento 2.4.8 and PHP 8.4. The module does not work for this stack. When is it planned to update the module to these versions?
Thanks.
06-16-2025 02:18 PM
What issue are you running into?
06-17-2025 01:54 AM
Errors related to deprecated functionality: Implicitly marking a parameter as nullable is deprecated; the explicit nullable type must be used instead.
Eg.
In functions:
($storeId = null) - is deprecated
(?int $storeId = null) - it correctly
In constructors:
(Logger $logger = null) - is deprecated
(?Logger $logger = null) - it correctly
etc.