From ce6be0ad88f8fea1a8a3db876bc354f48c1209dd Mon Sep 17 00:00:00 2001 From: Kiel Date: Fri, 16 Feb 2024 12:15:36 +0000 Subject: [PATCH] Zend Validator -> Laminas Validator --- Model/Utilities/PaymentMethods.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Model/Utilities/PaymentMethods.php b/Model/Utilities/PaymentMethods.php index dd7b8ff8..f549e650 100644 --- a/Model/Utilities/PaymentMethods.php +++ b/Model/Utilities/PaymentMethods.php @@ -170,7 +170,7 @@ public function getAvailableMethods() protected function _readXML() { - $validator = new \Zend\Validator\File\Exists(); + $validator = new \Laminas\Validator\File\Exists(); if (!self::$_xml && $validator->isValid($this->_xmlLocation)) { self::$_xml = simplexml_load_file($this->_xmlLocation); }