DIR:/home/htlwork.com/www/dev/magento/vendor/magento/module-payment/Gateway/Http/ |
Current File : /home/htlwork.com/www/dev/magento/vendor/magento/module-payment/Gateway/Http/ConverterInterface.php |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Http; /** * Interface ConverterInterface * @package Magento\Payment\Gateway\Http * @api * @since 100.0.2 */ interface ConverterInterface { /** * Converts gateway response to ENV structure * * @param mixed $response * @return array * @throws \Magento\Payment\Gateway\Http\ConverterException */ public function convert($response); } |