ConfigInterface.php 386 B

123456789101112131415
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Payment\Model\Method;
  7. /**
  8. * Interface for payment methods config
  9. *
  10. * @deprecated 100.3.0 This interface has no semantic meaning and all it implementations has no joint points.
  11. */
  12. interface ConfigInterface extends \Magento\Payment\Gateway\ConfigInterface
  13. {
  14. }