IconInterface.php 500 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Vault\Block\Customer;
  7. /**
  8. * Interface IconInterface
  9. */
  10. interface IconInterface
  11. {
  12. /**
  13. * Get url to icon
  14. * @return string
  15. */
  16. public function getIconUrl();
  17. /**
  18. * Get width of icon
  19. * @return int
  20. */
  21. public function getIconHeight();
  22. /**
  23. * Get height of icon
  24. * @return int
  25. */
  26. public function getIconWidth();
  27. }