cancel
Showing results for 
Search instead for 
Did you mean: 

Magento 2.4.8 extension not working

Andy_Davies
New Contributor

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.

2 REPLIES 2

jrob
First-timer

What issue are you running into?

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.