a month ago
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.
3 weeks ago
What issue are you running into?
3 weeks ago
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.