ConfigFactoryInterface.php 487 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Payment\Gateway;
  7. /**
  8. * Class ConfigInterfaceFactory
  9. * @package Magento\Payment\Gateway
  10. * @api
  11. * @since 100.1.0
  12. */
  13. interface ConfigFactoryInterface
  14. {
  15. /**
  16. * @param string|null $paymentCode
  17. * @param string|null $pathPattern
  18. * @return mixed
  19. * @since 100.1.0
  20. */
  21. public function create($paymentCode = null, $pathPattern = null);
  22. }