ConfigInterface.php 370 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. declare(strict_types=1);
  7. namespace Magento\Ui\Model\UrlInput;
  8. /**
  9. * Config interface for url link types
  10. */
  11. interface ConfigInterface
  12. {
  13. /**
  14. * Returns config for url link type
  15. *
  16. * @return array
  17. */
  18. public function getConfig(): array;
  19. }