1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- declare(strict_types=1);
- namespace Magento\Payment\Gateway\ErrorMapper;
- use Magento\Framework\Config\ConverterInterface;
- /**
- * Reads xml in `<message code="code">message</message>` format and converts it to [code => message] array format.
- */
- class XmlToArrayConverter implements ConverterInterface
- {
- /**
- * @inheritdoc
- */
- public function convert($source)
- {
- $result = [];
- $messageList = $source->getElementsByTagName('message');
- foreach ($messageList as $messageNode) {
- $result[(string) $messageNode->getAttribute('code')] = (string) $messageNode->nodeValue;
- }
- return $result;
- }
- }
|