You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
main.CRITICAL: Error: Class "Zend\Validator\File\Exists" not found in vendor/sapient/module-worldpay/Model/Utilities/PaymentMethods.php:173
As the Zend\Validator\File\Exists class is no longer available, we need to update the code accordingly.
Need to swap the:
$validator = new \Zend\Validator\File\Exists();
With:
$validator = new \Laminas\Validator\File\Exists();
Tested in Magento2.4.6-p2.
The text was updated successfully, but these errors were encountered:
This seems to be because the laminas/laminas-zendframework-bridge was deprecated from laminas/laminas-server:2.17 and there's no hard requirement in magneto to keep it down to laminas/laminas-server: 2.16
Hello,
The recent PR did not address the deprecated code issue in the file
The error being reported is:
Need to swap the:
With:
Tested in Magento2.4.6-p2.
The text was updated successfully, but these errors were encountered: