ConfigInterface.php 493 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Resource configuration interface
  4. *
  5. * Copyright © Magento, Inc. All rights reserved.
  6. * See COPYING.txt for license details.
  7. */
  8. namespace Magento\Framework\App\ResourceConnection;
  9. /**
  10. * Interface \Magento\Framework\App\ResourceConnection\ConfigInterface
  11. *
  12. */
  13. interface ConfigInterface
  14. {
  15. /**
  16. * Retrieve resource connection instance name
  17. *
  18. * @param string $resourceName
  19. * @return string
  20. */
  21. public function getConnectionName($resourceName);
  22. }