1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Payment\Gateway;
- /**
- * Interface ConfigInterface
- * @package Magento\Payment\Gateway
- * @api
- * @since 100.0.2
- */
- interface ConfigInterface
- {
- /**
- * Retrieve information from payment configuration
- *
- * @param string $field
- * @param int|null $storeId
- *
- * @return mixed
- */
- public function getValue($field, $storeId = null);
- /**
- * Sets method code
- *
- * @param string $methodCode
- * @return void
- */
- public function setMethodCode($methodCode);
- /**
- * Sets path pattern
- *
- * @param string $pathPattern
- * @return void
- */
- public function setPathPattern($pathPattern);
- }
|