ConfigInterface.php 402 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\Image\Adapter;
  7. /**
  8. * Interface \Magento\Framework\Image\Adapter\ConfigInterface
  9. *
  10. */
  11. interface ConfigInterface
  12. {
  13. /**
  14. * @return string
  15. */
  16. public function getAdapterAlias();
  17. /**
  18. * @return array
  19. */
  20. public function getAdapters();
  21. }