TokenUiComponentInterface.php 555 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Vault\Model\Ui;
  7. /**
  8. * Interface TokenUiComponentInterface
  9. * @package Magento\Vault\Model\Ui
  10. * @api
  11. * @since 100.1.0
  12. */
  13. interface TokenUiComponentInterface
  14. {
  15. /**
  16. * Returns component configuration
  17. *
  18. * @return array
  19. * @since 100.1.0
  20. */
  21. public function getConfig();
  22. /**
  23. * Returns component name
  24. *
  25. * @return string
  26. * @since 100.1.0
  27. */
  28. public function getName();
  29. }